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

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

public GetPhysicalLength ( ) : uint
Результат uint
        public override uint GetPhysicalLength()
        {
            return 2 * sizeof (byte) +
                   (ParameterIndex.HasValue
                       ? ParameterIndex.Value.GetCompressedSize() +
                         (NumberOfElements.HasValue ? NumberOfElements.Value.GetCompressedSize() : 0)
                       : 0);
        }