我的Visual Studio 2008解决方案中有一个名为writeOutput
的函数。这有一个字符串参数
例如。 writeOutput("hello there");
在我的项目中广泛调用此函数。但是我想添加另一个定义颜色的参数。所以我将函数定义更改为;
public void writeOutput(string textToDisplay, Color theColor)
所以我想在解决方案中找到writeOutput的所有当前实例并更改它们,以便有另一个参数,Color参数应该为当前实例eq设置为null。
writeOutput("hello there");
应改为
writeOutput("hello there", null);
有人能告诉我怎么做吗?我假设正则表达式是必需的,但我不确定。
请注意,只使用2个参数重载我的writeOutput函数,这不是一个选项!