C#.net 如何调用自定义类的方法

2024年11月29日 12:47
有4个网友回答
网友(1):

1、命名空间团枝要一致
2、单击自定义类的那个文件在属性面板里面>>生塌宽敏成操作巧拿 选编译
3、实例化Common类,再用对象调用其IsNumeric方法

网友(2):

在需要使用的页面,添加using JinCheng.APP_Code;

网友(3):

  局兆宏调用自定义类:
  猜纳public class Base
{
public void abc()
{
Console.WriteLine("In base");
}
}

public class Driver : Base
{
public new void abc()
{
Console.WriteLine("In driver");
}
}
static void Main(string[] args)
{

Driver d = new Driver();
d.abc(); //In driver
((Base)d).abc(); //桐册In base
}

网友(4):

后面要加参数的呀。