Concept of Private class in C#

74.8k Views Asked by At

Can private classes exist in C#, other than in Inner classes?

6

There are 6 best solutions below

0
On

No, there isn't. You cannot have a private class unless it is nested.

0
On

In what scenario other then for an innter class would you like to have a 'private' class ?

You can use the internal modifier to create a class that is only visible in the current assembly.

// the class below is only visible inside the assembly in where it was declared
internal class MyClass
{
}
1
On

No. What would the scope of such a class be?

0
On

Simply NO. Nothing unless its in a nested Class

  • Classes and structs that are not nested within other classes or structs can be either public or internal. A type declared as public is accessible by any other type. A type declared as internal is only accessible by types within the same assembly. Classes and structs are declared as internal by default unless the keyword public is added to the class definition.

  • Class or struct definitions can add the internal keyword to make their access level explicit. Access modifiers do not affect the class or struct itself — it always has access to itself and all of its own members.

  • Struct members, including nested classes and structs, can be declared as public, internal, or private. Class members, including nested classes and structs, can be public, protected internal, protected, internal, or private. The access level for class members and struct members, including nested classes and structs, is private by default. Private nested types are not accessible from outside the containing type.

  • Derived classes cannot have greater accessibility than their base types. In other words, you cannot have a public class B that derives from an internal class A. If this were allowed, it would have the effect of making A public, because all protected or internal members of A are accessible from the derived class.


    You can enable specific other assemblies to access your internal types by using the InternalsVisibleToAttribute.

1
On

We can declare a class as Private inside other class. kindly find the code below on how to achieve the same:

 public class Class1
  {
    temp _temp ;
    public Class1()
    {
      _temp = new temp();   
    }    

    public void SetTempClass(string p_str, int p_Int)
    {
      _temp.setVar(p_str, p_Int);
    }

    public string GetTempClassStr()
    {
      return _temp.GetStr();
    }

    public int GetTempClassInt()
    {
      return _temp.GetInt();
    }

    private class temp
    {
      string str;
      int i;

      public void setVar(string p_str, int p_int)
      {
        str = p_str;
        i = p_int;
      }

      public string GetStr()
      {
        return str;
      }

      public int GetInt()
      {
        return i;
      }
    }
  }
0
On

C# 11 added file-local types. Types with the file access modifier are only available within the source file where they are declared.

For example, you can declare a file-local class Foo in one file:

// file1.cs
namespace Test;

file class Foo {}

class FooFactory
{
    public static object CreateFoo() => new Foo();
}

In another file you cannot refer to the type by the name Foo:

// file2.cs

using System;

namespace Test;

class Program
{
    public static void Main()
    {
         // Prints something like:
         // "Test.<file1>EF2345065A04F90B2A4EE01E86C4DF23B0AF1B96D7D3F7CC9046D1F1C5EADFB80__Foo"
         Console.WriteLine(FooFactory.CreateFoo());
         // Does not compile with error:
         // "The type or namespace name 'Foo' could not be found"
         new Foo();
    }
}

As you can see from this example, the C# compiler gives each file-local class a unique name when compiled. This allow multiple files to define a file-local class with the same name and not interfere with each other at run time.