Microsoft.Protocols.TestSuites.Common.RopSetColumnsRequest.Size C# (CSharp) Méthode

Size() public méthode

Return the size of this structure.
public Size ( ) : int
Résultat int
        public int Size()
        {
            int size = (sizeof(byte) * 4) + sizeof(ushort);
            if (this.PropertyTagCount > 0)
            {
                size += this.PropertyTags.Length * Marshal.SizeOf(typeof(PropertyTag));
            }

            return size;
        }
    }
RopSetColumnsRequest