SwfDotNet.IO.Tags.Types.ImageBlock.GetSizeOf C# (CSharp) 메소드

GetSizeOf() 공개 메소드

Gets the size of.
public GetSizeOf ( ) : int
리턴 int
        public int GetSizeOf()
        {
            int res = 2;
            if (data != null)
                res += data.Length;
            return res;
        }