将一个方法参数传递给另一个方法 - c#

时间:2016-08-14 16:05:06

标签: c# methods rename

是否可以将参数从一种方法转移到另一种方法?

基本上我想要做的是重命名一个方法(在我的例子中是 - .WriteLine()方法),有没有办法创建一个具有我想要的名称的方法,并让它采取另一种方法的参数像这样:

void Func(Take The parametes of The .WriteLine method) //This is the rename of the method
{
   Console.WriteLine(place them here);
}

Basiclly我想重命名一个方法。

1 个答案:

答案 0 :(得分:4)

如果我正确理解了您的问题,您只需将对象传递给Func,该对象应传递给WriteLine方法。

void Func(string SomeParameter) //This is the rename of the method     
{
   Console.WriteLine(SomeParameter);
}

SomeParameter将传递给调用Func的{​​{1}}方法。使用此功能:

Console.WriteLine

这应该在输出屏幕上打印“Hello World”文本。