royalapplications / beyondnet

A toolset that makes it possible to call .NET code from other programming languages, including C, Swift and Kotlin.
https://royalapps.com
MIT License
111 stars 5 forks source link

Indexers #29

Closed lemonmojo closed 1 year ago

lemonmojo commented 1 year ago

Sample:

class MyClass
{
    private int[,] myArray = new int[10, 10];

    public int this[int i, int j]
    {
        get { return myArray[i, j]; }
        set { myArray[i, j] = value; }
    }
}