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

GetSizeOf() public method

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