HomeCSharpC# Error CS0432 – Alias ‘identifier’ not found

C# Error CS0432 – Alias ‘identifier’ not found

C# Compiler Error

CS0432 – Alias ‘identifier’ not found

Reason for the Error

You’ll get this error in your C# code when you attempt to use the “::” operator to the right hand side of the identifier that is not an alias.

For example, try compiling the below C# code snippet.

using System;
namespace DeveloperPublishNamespace
{

    public class Class1
    {
        public class Class2
        {
            public static void Function1()
            {
                Console.WriteLine("Inside Function1");
            }
        }
    }

    class Program
    {      
        static void Main(string[] args)
        {
            A::Class2.Function1();
            Console.WriteLine("Hello World!");
        }
    }
}

You’ll receive the error code CS0432 when you try to compile the above C# program because you are using the :: operator to the right of the identifier “A” where you don’t have the alias “A” defined.

Error CS0432 Alias ‘A’ not found DeveloperPublish C:\Users\Balu\source\repos\ConsoleApp4\ConsoleApp4\Program.cs 20 Active

C# Error CS0432 – Alias 'identifier' not found

Solution

You can fix this error in your C# program by using the “.” operator instead of “::” operator and define the alias as shown below.

using System;
namespace DeveloperPublishNamespace
{
    using A = Class1;
    public class Class1
    {
        public class Class2
        {
            public static void Function1()
            {
                Console.WriteLine("Inside Function1");
            }
        }
    }

    class Program
    {      
        static void Main(string[] args)
        {
            A.Class2.Function1();
            Console.WriteLine("Hello World!");
        }
    }
}

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...