很简单的问题,C#的using ( 积分: 50 )

  • 主题发起人 主题发起人 beamgx
  • 开始时间 开始时间
B

beamgx

Unregistered / Unconfirmed
GUEST, unregistred user!
vs2003.net,c#中
怎么才能象DELPHI中的uses MyUnit;一样
在Uint1.cs使用Unit2.cs中的class?
 
vs2003.net,c#中
怎么才能象DELPHI中的uses MyUnit;一样
在Uint1.cs使用Unit2.cs中的class?
 
放在同一个命名空间(namespace)下就可以了.
 
解决问题
送分
如果是现有CS文件,可以在MyProj.csproj文件中加
<File
RelPath = "MyUint.cs"
SubType = "Code"
BuildAction = "Compile"
/>
新类就直接用菜单“工具”-“添加类”,添加新类
 
后退
顶部