在 C# 中使用命名空间
我正在用 C# 创建一个 Windows Phone 游戏,我想通过控制台测试一些输出和其他数据。如何将电话应用程序中的类(或命名空间)包含到控制台项目中?
I am creating a game for windows phone in C# and I want to test out some output and other data through the console. How do I include the classes (or the namespace) from the phone application into a console project?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在源代码的顶部:
确保您的项目中引用了代码库,如下所示:
At the top of your source code:
Ensure that you have the code library referenced in your project, like so:
使用例如
,或者如果您不这样做,在您的代码中...
如果您已将类放入不同的程序集(项目)中,那么您需要添加对项目/程序集的引用。
如果您的解决方案中没有该项目,那么您可能还需要将该项目添加到解决方案中,然后从主应用程序引用该项目。
with using eg
or if you don't do that, in your code...
If you have put your classes in a different assembly ( project ) then you need to add a reference to your project / assembly.
If you don't have the project in your solution, then you may also need to add the project to the solution, then reference the project from your main app.