C#重载方法
提问人:刘冬梅发布时间:2020-10-13
public int MethodTest(int i,int j) //重载方法1
{
//代码
}
public int MethodTest(int i) //重载方法2
{
//代码
}
public string MethodTest(string sr) //重载方法3
{
//代码
}
继续查找其他问题的答案?
相关视频回答
回复(0)
public int MethodTest(int i,int j) //重载方法1
{
//代码
}
public int MethodTest(int i) //重载方法2
{
//代码
}
public string MethodTest(string sr) //重载方法3
{
//代码
}
点击加载更多评论>>