GetSizeOf() public static method

Gets the size of.
public static GetSizeOf ( ) : int
return int
Exemplo n.º 1
0
        /// <summary>
        /// Gets the size of.
        /// </summary>
        /// <returns>size of this object</returns>
        public int GetSizeOf()
        {
            int res = 1;

            res += this.Count * MorphGradRecord.GetSizeOf();
            return(res);
        }