how i can do this in c#
- by Ian Moss
I want to make a framework who the style of function calling is different from the c# style
like the instance create like
Documment doc= new Document("required param is here");
doc("otherinfo").Dothis();
dothis function calling on the basis of information who user passed when they create a new instance and otherinfo they passed latter.
well it's something like jQuery. like $("#goo").length
are this possible to do this in c#