Microsoft.Protocols.TestSuites.Common.TypedPropertyValue.Size C# (CSharp) Method

Size() public method

Return the Size of this struct.
public Size ( ) : int
return int
        public override int Size()
        {
            int size = sizeof(byte) * 2;
            size += base.Size();
            return size;
        }
TypedPropertyValue