AsmResolver.Net.Signatures.PropertySignature.GetPhysicalLength C# (CSharp) Méthode

GetPhysicalLength() public méthode

public GetPhysicalLength ( ) : uint
Résultat uint
        public override uint GetPhysicalLength()
        {
            return (uint)(sizeof (byte) +
                          Parameters.Count.GetCompressedSize() +
                          PropertyType.GetPhysicalLength() +
                          Parameters.Sum(x => x.GetPhysicalLength()));
        }