Is there a way to store a delegate without binding it to an object like how you can with a MethodInfo? Right now I am storing a MethodInfo so I can give it the object to cal
A delegate is essentially just a MethodInfo (actually, a MethodBase) and an object reference, with some internal pointers for performance. So if you have a MethodInfo, you essentially have an unbound delegate. What is your specific use case?