C# 怎样在program.cs 文件中 使用cc.cs中的类
program.cs如下usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem....
program.cs如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace hello_word
{
class Program
{
static void Main(string[] args)
{
Class2 dd = new Class2();
String d = "duz";
Console.WriteLine("x={0}",d);
}
}
} 展开
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace hello_word
{
class Program
{
static void Main(string[] args)
{
Class2 dd = new Class2();
String d = "duz";
Console.WriteLine("x={0}",d);
}
}
} 展开
2个回答
展开全部
cc.cs 跟program.cs在同一级下,直接在program.cs 直接实例化
cc.cs里的方法是pulic static 可直接使用 cc.sthmethod()
其他修饰符则需实例化 cc=new cc();cc.sothmethid();
cc.cs里的方法是pulic static 可直接使用 cc.sthmethod()
其他修饰符则需实例化 cc=new cc();cc.sothmethid();
追问
错误 2 找不到类型或命名空间名称“Class2”(是否缺少 using 指令或程序集引用?) D:\My Documents\Du\hello_word\hello_word\Program.cs 13 28 hello_word
class1.cs //如下
using System;
public class Class2
{
public void function1()
{Console.WriteLine("学习之中");
}
}
追答
检查 D:\My Documents\Du\hello_word\hello_word\ 这个目录下面是否有class1.cs /
是否包含在项目中
二者是否在同一命名空间
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询