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

GetSizeOf() public method

Gets the size of.
public GetSizeOf ( ) : int
return int
        public int GetSizeOf()
        {
            int res = 0;
            if (colorTableRGB != null)
                res += colorTableRGB.Length * 3;
            if (colorMapPixelData != null)
                res += colorMapPixelData.Length * 1;
            return res;
        }