Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does assembly mean in c#

Tags:

c#

asp.net

i just read about the Public Access Modifier.

Its access levels are

  1. Within the derived classes of that class available within the same assembly.

  2. Outside the class within the same assembly.

  3. Within the derived classes of that class available outside the assembly.

  4. Outside the class outside the assembly.

What does assembly mean here?Can any one give any example

like image 332
iJade Avatar asked Dec 27 '22 09:12

iJade


1 Answers

An assembly is a DLL or Exe file

Assembly (CLI)

like image 164
Morten Anderson Avatar answered Dec 29 '22 00:12

Morten Anderson