Showing posts with label Generics. Show all posts
Showing posts with label Generics. Show all posts

Tuesday, October 13, 2009

Generic Method

public static T GMethod(T g)
{
return g;
}



Response.Write(GMethod(10));
Response.Write("
");
Response.Write(GMethod("Hi From Gineric Method !"));



=====================OutPut=============================
10
Hi From Gineric Method !