1 write to Start
System.Reflection.Metadata (1)
System\Reflection\Metadata\Blob.cs (1)
15
Start
= start;
9 references to Start
System.Reflection.Metadata (9)
System\Reflection\Metadata\Blob.cs (1)
21
public ArraySegment<byte> GetBytes() => new ArraySegment<byte>(Buffer,
Start
, Length);
System\Reflection\Metadata\BlobWriter.cs (1)
34
: this(blob.Buffer, blob.
Start
, blob.Length)
System\Reflection\PortableExecutable\PEBuilder.cs (7)
436
int blobStart = blob.
Start
;
475
internal static Blob GetPrefixBlob(Blob container, Blob blob) => new Blob(container.Buffer, container.
Start
, blob.
Start
- container.
Start
);
476
internal static Blob GetSuffixBlob(Blob container, Blob blob) => new Blob(container.Buffer, blob.
Start
+ blob.Length, container.
Start
+ container.Length - blob.
Start
- blob.Length);