Is it possible to take parameters from one method to another?
Basiclly what I want to do is rename a method (in my case is The - .WriteLine() Method), Is there any way of creating a method with the name I want and have it take the parameters of another method like so:
void Func(Take The parametes of The .WriteLine method) //This is the rename of the method
{
Console.WriteLine(place them here);
}
Basiclly I want to rename a method.
Console.WriteLine().