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...)