5109b23b84
* generate structs as classes * forgot a handrolled type
16 lines
324 B
C#
16 lines
324 B
C#
namespace Rhino;
|
|
|
|
public partial class IndexPair
|
|
{
|
|
int System.Collections.Generic.IList<System.Int32>.this[int x]
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
set { }
|
|
}
|
|
|
|
int System.Collections.Generic.IReadOnlyList<int>.this[int x]
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|