14 references to Length
ILCompiler.ReadyToRun (2)
IBC\MIbcProfileParser.cs (2)
121peData = new byte[mibcDataEntry.Length]; 124peData = br.ReadBytes(checked((int)mibcDataEntry.Length));
ILCompiler.RyuJit (2)
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\IBC\MIbcProfileParser.cs (2)
121peData = new byte[mibcDataEntry.Length]; 124peData = br.ReadBytes(checked((int)mibcDataEntry.Length));
Microsoft.Build.Tasks.Core (1)
Unzip.cs (1)
329&& zipArchiveEntry.Length == fileInfo.Length;
Microsoft.ML.Core (2)
Data\Repository.cs (2)
544ExceptionContext.CheckDecode(entry.Length < int.MaxValue, "Repository stream too large to read into memory"); 545stream = new MemoryStream((int)entry.Length);
Microsoft.ML.Ensemble (2)
EntryPoints\CreateEnsemble.cs (2)
340dataSerialized[i] = new byte[entries[i].Length]; 342s.ReadExactly(dataSerialized[i], 0, (int)entries[i].Length);
NuGet.Packaging (1)
PackageArchiveReader.cs (1)
316using (var sizedStream = new SizedArchiveEntryStream(stream, entry.Length))
NuGet.Protocol (1)
Model\LocalPackageSearchMetadata.cs (1)
158if (entry.Length >= FiveMegabytes)
System.IO.Compression.ZipFile (2)
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (2)
122preallocationSize = source.Length; 177if (source.Length != 0)
System.IO.Packaging (1)
System\IO\Packaging\ZipWrappingStream.cs (1)
125return _zipArchiveEntry.Length;