如果我有一个带有我无法更改的公共方法(非静态)的类。
我需要添加一些我自己的方法,这些方法将使用现有的公共非静态方法,
我怎样才能以正确的方式做到这一点?
现在,在我自己的方法中,我正在创建自己的类的实例以使用其他方法,但我认为这不是一个好方法。
例子:
class aaa
{
public string a(int i)
{
...
}
public string b (int i)
{
...
}
public static void x()
{
aaa myclass = new aaa();
string str = myclass.a(5);
}
}