Unknown identifier when using constants C#

前端 未结 1 655
我在风中等你
我在风中等你 2021-01-18 04:34

When im trying to use constants in this C# application. When i run through the debugger, the constants come up as an \"unknown identifier\" Heres the code

pu         


        
相关标签:
1条回答
  • 2021-01-18 04:56

    There is a long-standing debugging issue in Xamarin.Android with Visual Studio related to inspecting values in static classes. Specifically, if you set a breakpoint on a line referencing a static class (or a non-static class with static members), Visual Studio may show the inspection value as "Unknown identifier: [ClassName]".

    From my analysis, it turns out that the locations of class files in the project determine whether or not you'll have that issue.

    The upshot for me is that, until Xamarin fixes the bug, all static classes, and classes with static members, should be placed in the root folder of the project. There are other file placement options, but some flat out don't work, and one requires fully qualifying your static class call with the namespace--even when not required by the compiler.

    See comments in code below for full details.

    MainActivity.cs

    using System;
    using Android.App;
    using Android.OS;
    
    namespace App1 {
    
    [Activity(Label = "Unknown Identifier Test", MainLauncher = true)]
    public class MainActivity : Activity {        
    
        protected override void OnCreate(Bundle bundle) {
            base.OnCreate(bundle);
    
            Console.WriteLine(MyClass.MyString);            // Unqualified
            Console.WriteLine(App1.MyClass.MyString);       // Fully Qualified with namespace
    
            /*
            Set a break point on the "Console.WriteLine()" lines above and you'll get the 
            "Unknown identifier: MyClass" error when trying to inspect under specific conditions...
    
            File Locations                                      Unqualified             Fully Qualified
            -------------------------------------------------   ---------------------   --------------------
            MainActivity.cs in root, MyClass.cs in sub-folder   "Unknown identifier"    Inspection Works
            MainActivity.cs in sub-folder, MyClass.cs in root   Inspection Works        Inspection Works
            Both in root                                        Inspection Works        Inspection Works
            Both in different sub-folders                       "Unknown identifier"    "Unknown identifier"
            Both in same sub-folder                             "Unknown identifier"    "Unknown identifier"
            */
        }
    }
    }
    

    MyClass.cs

    namespace App1 {
    public static class MyClass {
        public static string MyString;
    }
    
    // The class can also be constructed this way, which results in the same findings:
    //public class MyClass {
    //    public static string MyString;
    //}    
    }
    

    On 4/3/2016, I updated the associated Xamarin Bugzilla ticket with this information. Hopefully they get this resolved soon.

    0 讨论(0)
提交回复
热议问题