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
Delegate is just the base class so you can't use it like that. You could do something like this though:
Delegate
public void DoRequest(string request, Action<string> callback) { // do stuff.... callback("asdf"); }