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

GetPhysicalLength() public method

public GetPhysicalLength ( ) : uint
return uint
        public override uint GetPhysicalLength()
        {
            var length = Align((uint)(Encoding.ASCII.GetByteCount(Name) + 1), 4);
            return (uint)(2 * sizeof (uint) + length);
        }