13 lines
174 B
C#
13 lines
174 B
C#
using System;
|
|
|
|
namespace NativeCollection
|
|
{
|
|
public interface INativeCollectionClass : IDisposable
|
|
{
|
|
void ReInit();
|
|
|
|
bool IsDisposed { get; }
|
|
}
|
|
}
|
|
|