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

GetPhysicalLength() public method

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