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

GetPhysicalLength() 공개 메소드

public GetPhysicalLength ( ) : uint
리턴 uint
        public override uint GetPhysicalLength()
        {
            return (uint)(sizeof (ushort) +
                          FixedArguments.Sum(x => x.GetPhysicalLength()) +
                          sizeof (ushort) +
                          NamedArguments.Sum(x => x.GetPhysicalLength()));
        }