objective C like messaging in C#

Posted by Wast334 on Stack Overflow See other posts from Stack Overflow or by Wast334
Published on 2010-05-05T07:46:20Z Indexed on 2010/05/05 7:48 UTC
Read the original article Hit count: 365

Filed under:
|
|
|

How can I do like objective C messaging in C#

I can already do method calls like

MyObject.DoSomething("stuff","morestuff");

but I want to achieve something similar to like the objective C code below:

[MyObject doSomething:@"stuff" whichHas:@"morestuff"];

thank you

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about c#