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

Size() public method

Return the size of this structure.
public Size ( ) : int
return int
        public int Size()
        {
            // 4 indicates sizeof(UInt16) * 2
            int size = sizeof(byte) * 4;
            return size;
        }
    }