I think Yea we can use This in parameter for static method. For implementing the extension methods we use “This” in parameters.
Ex :
public static class ExtMetClass
{
public static int IntegerExtension(this string str)
{
return Int32.Parse(str);
}
}





