AsmResolver.Net.Signatures.CustomAttributeNamedArgument.GetPhysicalLength C# (CSharp) Метод

GetPhysicalLength() публичный Метод

public GetPhysicalLength ( ) : uint
Результат uint
        public override uint GetPhysicalLength()
        {
            return sizeof (byte) +
                   ArgumentType.GetPhysicalLength() +
                   (MemberName == null ? sizeof (byte) : MemberName.GetSerStringSize()) +
                   Argument.GetPhysicalLength();
        }