As I am new to C# ,just wish to know, can i perform function chaining in C# like jQuery ?
Example jQuery :
$("#gview tbody tr")
.not(":first,:last")
.filter(":odd")
.addClass("someclass")
.css("border","solid 1px grey");
Note : I don’t mean clientside script.My only concern is function chaining is possible in C# or not
Yes, just return the current object (this), and you can chain as much as you want. It’s also called fluent interface