BananaMpq.Layer.Wdt.Wdt C# (CSharp) Метод

Wdt() публичный Метод

public Wdt ( byte data ) : System.Collections.Generic
data byte
Результат System.Collections.Generic
        public unsafe Wdt(byte[] data)
        {
            fixed (byte* p = data)
            {
                Chunks = ChunkCollector.CreateChunks(p, p + data.Length, CreateChunk);
            }
        }