AsmResolver.Net.ImageNetDirectory.GetPhysicalLength C# (CSharp) Method

GetPhysicalLength() public method

public GetPhysicalLength ( ) : uint
return uint
        public override uint GetPhysicalLength()
        {
            var dirLength = MetadataDirectory.GetPhysicalLength();
            return 1 * sizeof (uint) +
                   2 * sizeof (ushort) +
                   1 * dirLength +
                   2 * sizeof (uint) +
                   6 * dirLength;
        }