INativeCollectionClass.cs 174 B

123456789101112
  1. using System;
  2. namespace NativeCollection
  3. {
  4. public interface INativeCollectionClass : IDisposable
  5. {
  6. void ReInit();
  7. bool IsDisposed { get; }
  8. }
  9. }