SwfDotNet.IO.Tags.Types.MorphGradRecord.GetSizeOf C# (CSharp) Method

GetSizeOf() public static method

Gets the size of.
public static GetSizeOf ( ) : int
return int
        public static int GetSizeOf()
        {
            return 2 + (2 * 4);
        }

Usage Example

Example #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);
        }