AsmResolver.Net.Signatures.OptionalModifierSignature.GetPhysicalLength C# (CSharp) 메소드

GetPhysicalLength() 공개 메소드

public GetPhysicalLength ( ) : uint
리턴 uint
        public override uint GetPhysicalLength()
        {
            var encoder = ModifierType.Header.GetStream<TableStream>()
                .GetIndexEncoder(CodedIndex.TypeDefOrRef);
            return sizeof (byte) +
                   encoder.EncodeToken(ModifierType.MetadataToken).GetCompressedSize() +
                   BaseType.GetPhysicalLength();
        }