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
What you need is a delegate and a callback. Here is a nice MSDN article that will show you how to use this technique in C#.