Microsoft.Protocols.TestSuites.Common.PropertyTag.Size C# (CSharp) Метод

Size() публичный Метод

Return the size of this structure.
public Size ( ) : int
Результат int
        public int Size()
        {
            // 4 indicates sizeof(UInt16) * 2
            int size = sizeof(byte) * 4;
            return size;
        }
    }