Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unknown identifier when using constants C#

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

public static class ConstsConfig
{
    public static string BASE_URL_FORMAT = "%s://%s%s";
}

public static class NetworkConfig
{
    public static string PROTOCOL = "http";
    public static string HOST = "www.example.com";
    public static string BASE_URL = "/test";
}

This is the line of code where its not evaluating it seems like

Uri uri = new Uri(String.Format(ConstsConfig.BASE_URL_FORMAT, NetworkConfig.PROTOCOL, NetworkConfig.HOST, NetworkConfig.BASE_URL)));

So when i step through the debugger and break on this line. If you hoever over one of the constants. It just says "Unknown identifier ConstsConfig" or "Uknown identifier NetworkConfig"

I would imagine its something small. Thanks for the help in advance.

like image 832
CBaker Avatar asked Apr 13 '15 18:04

CBaker


1 Answers

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.

like image 158
Robert Bruce Avatar answered Sep 27 '22 22:09

Robert Bruce