AlbLib.IFF.IFFChunk.IFFChunk C# (CSharp) Method

IFFChunk() public method

Initializes new instance.
public IFFChunk ( string typeid, int length ) : System
typeid string
length int
return System
        public IFFChunk(string typeid, int length)
        {
            TypeID = typeid;
            Length = length;
        }
IFFChunk