I\'m basically trying to pass a method to another class to be called later, but can\'t quite figure this out in C# (I\'m still too used to Objective-C).
public c
You can pass it as Action - which means it is a method with a single parameter of type string that doesn't return anything (void) :
string
public void DoRequest(string request, Action callback) { // do stuff.... callback("asdf"); }