I have a class that exposes a list of data by overloading the index operator (see below). Can I access this from clojure?
double this[int index] { get; } I don't know any thing about C# programming language but the concept should be the same when you call Java code from Clojure.
To call instance method:
(.methodName objectInstance params...) To call static method (assuming C# has static methods):
(ClassName/staticMethod params...)