So I'm converting some code from Objc to C#, and I ask an object in 
C# whether it respondsToSelector( "fancyObject:MagicSelector" ). It 
says "sure!" and so I try to call it ala object.MagicSelector();

The compiler yells at me because that object does not contain a 
definition for MagicSelector and no extension method MagicSelector of 
type MonoTouch.Foundation.NSObject could be found.

Do I have to say something like (from my C background):

fancyObject thisUn = (fancyObject)object;
fancyObject.MagicSelector(); ?
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to