I am using Obj C with Cocoa framework.
I have a Mono (C# on linux) class with a function
I made changes to call other mono functions from Obj C successfully.
But the above said mono function is expecting a reference while calling it.
How can I call it from my ObjC code?
I have a Mono (C# on linux) class with a function
Code:
void CheckForUpdate(string ID,out int version);
But the above said mono function is expecting a reference while calling it.
How can I call it from my ObjC code?