c # interview questions (2)

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/merciaMA/article/details/102741297

What is a private assembly in .net?

Private assembly is a relatively simple procedure set type. Private assemblies are generally shipped on some software, and can only be used in this software. When the programmer to use these types of assemblies in other client applications only need to add a reference to either make the call.

What is shared assembly in .net?

Share assembly provides multiple application domains ability to access the same assembly, there is only the same copy of the assembly in memory, code sharing this non-specific domain can greatly save memory resources.

What .net application domains are?

Applications are available in CLR code runs range, fault isolation and security isolation logic unit, this function is similar to the process of the operating system.

ClickOnce deployed briefly in C #

ClickOnce is a deployment technology, using the technology to create Windows-based application update itself, and these programs can be installed and run through minimal user interaction, you can quickly create a ClickOnce application through Visual Studio's Publishing Wizard programmer.

Guess you like

Origin blog.csdn.net/merciaMA/article/details/102741297