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

GetPhysicalLength() public méthode

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