fb415d0416
.NET Build and Publish / build (push) Has been cancelled
* fix issue with basetype being null * add Rhino.FileIO properly * update csharpier
13 lines
428 B
C#
13 lines
428 B
C#
namespace Rhino.FileIO;
|
|
|
|
public partial class File3dmCommonComponentTable<T> : Rhino.FileIO.CommonComponentTable<T>
|
|
{
|
|
public File3dmCommonComponentTable() { }
|
|
|
|
public virtual void Delete(System.Int32 index) => throw new System.NotImplementedException();
|
|
|
|
public virtual void Add(T item) => throw new System.NotImplementedException();
|
|
|
|
public virtual System.String Dump() => throw new System.NotImplementedException();
|
|
}
|