在 C# 中使用命名空间

发布于 2025-01-05 10:01:57 字数 85 浏览 2 评论 0原文

我正在用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泅渡 2025-01-12 10:01:57

在源代码的顶部:

using YourNameSpace;

确保您的项目中引用了代码库,如下所示:

  1. 对象资源管理器中,找到引用
  2. 右键单击引用并选择添加引用...
  3. 在 GAC 中或通过“浏览”选项卡找到包含您的命名空间的 DLL

At the top of your source code:

using YourNameSpace;

Ensure that you have the code library referenced in your project, like so:

  1. In your Object Explorer, locate References
  2. Right-click References and select Add Reference...
  3. Locate the DLL that contains your namespace either in the GAC or through the Browse tab
落花浅忆 2025-01-12 10:01:57

使用例如

using MyGameStuff;

,或者如果您不这样做,在您的代码中...

var sprite = new MyGameStuff.Sprite ();

如果您已将类放入不同的程序集(项目)中,那么您需要添加对项目/程序集的引用。

如果您的解决方案中没有该项目,那么您可能还需要将该项目添加到解决方案中,然后从主应用程序引用该项目。

with using eg

using MyGameStuff;

or if you don't do that, in your code...

var sprite = new MyGameStuff.Sprite ();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文