Files
Adam Hathcock 5109b23b84 generate structs as classes (#29)
* generate structs as classes

* forgot a handrolled type
2024-07-03 11:32:36 +01:00

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();
}
}