以编程方式获取 case 语句中常量的值

发布于 2024-11-27 17:39:21 字数 587 浏览 0 评论 0原文

我需要一种方法来知道 case 语句中使用的常量的值。这可能吗? 例如

private void myswitchfunc(string myvar) {
    switch(myvar) {
        case "hello":
             mycallback();  //no variable passing!
             break;
        case "hi":
             mycallback();  //no variable passing!
             break;
    }
}
private void mycallback() {
        //print the name of the constant in the calling case 
}

我到达的最远的地方是这个 http://www.csharp-examples.net/reflection-calling-method-名称/

I need a way to know the value of the constant used in the case statement. Is this possible?
For example

private void myswitchfunc(string myvar) {
    switch(myvar) {
        case "hello":
             mycallback();  //no variable passing!
             break;
        case "hi":
             mycallback();  //no variable passing!
             break;
    }
}
private void mycallback() {
        //print the name of the constant in the calling case 
}

The farthest I got to is this
http://www.csharp-examples.net/reflection-calling-method-name/

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

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

发布评论

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

评论(4

泅渡 2024-12-04 17:39:21

不,您需要传递该值。或者在共享外部作用域中使用变量(来自 Cameron

No, you will need to pass the value. Or use a variable in a shared outer scope (From Cameron)

小镇女孩 2024-12-04 17:39:21
private static void myswitchfunc(string myvar)
{
    Action mycallback = () => Console.WriteLine(myvar);
    switch (myvar)
    {
        case "hello":
            mycallback();  //no variable passing!
            break;
        case "hi":
            mycallback();  //no variable passing!
            break;
    }
}
private static void myswitchfunc(string myvar)
{
    Action mycallback = () => Console.WriteLine(myvar);
    switch (myvar)
    {
        case "hello":
            mycallback();  //no variable passing!
            break;
        case "hi":
            mycallback();  //no variable passing!
            break;
    }
}
丘比特射中我 2024-12-04 17:39:21

您需要像使用反射一样复杂吗?您可以只将常量的值存储在某个成员变量中以便在 mycallback() 方法中访问吗?例如:

class MyClass
{
    private string _MySwitchString;

    private void myswitchfunc(string myvar) {
    _MySwitchString = myvar;
    switch(myvar) {
        case "hello":
             mycallback();  //no variable passing!
             break;
        case "hi":
             mycallback();  //no variable passing!
             break;
       }
   }
   private void mycallback() {
           //print the name of the constant in the calling case 
      Console.Writeline(_MySwitchString); 
   }
}

请注意,这是未经测试的。

Do you need to get as complex as using Reflection? Can you just just store the value of the constant in some member variable to access in the mycallback() method? For example:

class MyClass
{
    private string _MySwitchString;

    private void myswitchfunc(string myvar) {
    _MySwitchString = myvar;
    switch(myvar) {
        case "hello":
             mycallback();  //no variable passing!
             break;
        case "hi":
             mycallback();  //no variable passing!
             break;
       }
   }
   private void mycallback() {
           //print the name of the constant in the calling case 
      Console.Writeline(_MySwitchString); 
   }
}

Note this is untested.

世俗缘 2024-12-04 17:39:21

在这种情况下,您必须使用“if”、“else if”语句。这不能通过 switch-case 语句来完成。

This is a case where you have to use "if", "else if" statements. This cannot be done with switch-case statements.

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