Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C#'s equivalent of jar files?

Java provides the jar file so that all the class files and jar files are merged into one file. Does C# provide equivalent/similar functionality?

like image 489
prosseek Avatar asked Jul 30 '10 12:07

prosseek


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.

What is C full form?

History: The name C is derived from an earlier programming language called BCPL (Basic Combined Programming Language). BCPL had another language based on it called B: the first letter in BCPL.


1 Answers

.NET compiles into dll or exe. You can use ILMerge to merge several dlls/exes into one.

like image 134
Svetlozar Angelov Avatar answered Sep 23 '22 10:09

Svetlozar Angelov