AsmResolver.Net.Signatures.CustomAttributeSignature.GetPhysicalLength C# (CSharp) Method

GetPhysicalLength() public method

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