我应该如何公开枚举?

发布于 2024-09-25 09:40:28 字数 233 浏览 1 评论 0原文

这是我的情况。

我有一个库,其中有一组我需要使用的枚举。

public enum showtype
{
  comedy = 1001, horror = 1002, mystery = 1003, action = 1004;
}

我创建的另一个库正在引用该库。 我的库被多个基于控制台的应用程序引用。

我需要直接从基于控制台的应用程序分配显示类型。

Here's my situation.

I have a library that has a set of enums that I need to use.

public enum showtype
{
  comedy = 1001, horror = 1002, mystery = 1003, action = 1004;
}

This library is being referenced by another library that I created.
My library is referenced by more than one console based app.

I need to assign the show type directly from the console based app.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

眼眸印温柔 2024-10-02 09:40:28

一些附加说明可澄清可能发生的情况:

  • 如果您的应用程序引用的库使用enum 引用该库,那么这还不够。您需要使用 enum 直接引用该库。

  • 您还应该确保使用 using 构造打开 enum 所在的命名空间。

A few additional notes to clarify what may be going on:

  • If your application references a library that references the library with the enum, then this is not enough. You need to directly reference the library with the enum.

  • You should also make sure that you open the namespace where the enum is located using the using construct.

暗地喜欢 2024-10-02 09:40:28

这应该很简单。添加对包含控制台应用程序中的枚举的库的引用。

It should be pretty simple. Add a reference to the library that contains the Enum inside your console application.

无力看清 2024-10-02 09:40:28

你的枚举已经暴露了。添加参考,您就可以开始了。

Your enum is already exposed. Add the reference and you're ready to go.

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