0

好的,所以我有一个奇怪的问题——我不确定我的措辞是否正确,这可能就是为什么我在搜索中没有找到任何相关信息的原因。

我有一个定义主机对象的类,该对象代表一台计算机,其中记录了有关该计算机的各种信息。

public sealed class Host
{
    public Host(string sName, IPAddress sAddress, string sType, string osName, bool sFirewall)
    {
        Name = sName;
        Address = sAddress;
        Type = sType;
        FirewallActive = sFirewall;
        OperatingSystem = osName;
    }

    public Host()
    {
        Name = "New Host";
        Address = IPAddress.Parse("127.0.0.1");
        Type = HostType.Desktop;
        OperatingSystem = HostOS.Win7;
        FirewallActive = true;
    }

    /// <summary>
    /// The name of the host
    /// </summary>
    public string Name { get; private set; }

    /// <summary>
    /// The ip address of the host
    /// </summary>
    public IPAddress Address { get; private set; }

    /// <summary>
    /// The type of the host
    /// </summary>
    public string Type { get; private set; }

    /// <summary>
    /// The operating system the system uses
    /// </summary>
    public string OperatingSystem { get; private set; }

    /// <summary>
    /// Whether the system has a firewall enabled
    /// </summary>
    public bool FirewallActive { get; private set; }
}

然后,我有几个对象具有几个设置的常量值。

public sealed class HostType
{
    public static string Desktop
    {
        get { return "Desktop"; }
    }
}

public sealed class HostOS
{
    public static string Win7
    {
        get { return "Windows 7"; }
    }
}

当我创建一个新的 Host 对象时,我希望 Intellisense 在构建新的 Hosts([parameters]) 对象时自动提示输入“HostOS”变量,类似于使用 MessageBox.Show( ...) 当您进入参数列表的那部分时,它会自动建议各种 MessageBoxButtons 选项的列表。

例如,我不想修改列表——我只想让 Intellisense 向我显示一个选项列表,这些选项是各种 HostOS 常量字符串。

4

1 回答 1

1

您应该将其定义为枚举而不是类。

例如:

public enum HostType
{
  Desktop,
  Server,
  Laptop
}

在类主机中,您必须将属性 Type 定义为 HostType

public HostType Type { get; private set }
于 2013-05-17T04:50:25.690 回答