I have an alias within my source-code file like this:
MyClass.cs
using System;               
using SomeClass = NewClass;
    
public class Program
{
    public static void Main()
    {
        Console.WriteLine(nameof(SomeClass));
    }
}
public class NewClass { }
I need this because the names of my classes changed and now I need to compile for both the old and the new class-structure symultaneously.
When I run that code I get "SomeClass" but I' d expected "NewClass". Why doesn't nameof reflect the alias using the using-directive in this case?
                        
It's because the
nameofkeyword is meant to "get the name of an identifier", without evaluating its value or anything else, like said in docs:More info here