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

GetPhysicalLength() 공개 메소드

public GetPhysicalLength ( ) : uint
리턴 uint
        public override uint GetPhysicalLength()
        {
            uint argumentsSize = (uint)NamedArguments.Sum(x => x.GetPhysicalLength());
            return (uint)(TypeName.GetSerStringSize() +
                          (NamedArguments.Count == 0
                              ? 2 * sizeof (byte)
                              : NamedArguments.Count.GetCompressedSize() +
                                argumentsSize.GetCompressedSize() +
                                argumentsSize));
        }