how i can do this in c#
Posted
by
Ian Moss
on Stack Overflow
See other posts from Stack Overflow
or by Ian Moss
Published on 2011-02-28T07:10:37Z
Indexed on
2011/02/28
7:24 UTC
Read the original article
Hit count: 121
c#
|frameworks
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#
© Stack Overflow or respective owner