Top ".net-assembly" questions

A group of classes and namespaces compiled into a binary file, written in a .NET-specific language such as C# or VB.

Activator.CreateInstance: Could not load type from assembly

I'm trying to create an instance of a class implemented in a plugin .dll in my project to do type …

c# reflection .net-assembly assembly-loading
What is .NET assembly culture?

After searching on website I post this question. I am aware of the fact that by default assemblies are "culture …

.net-assembly culture satellite
Using Codebase to load assembly

Based on this question, I tried using <codebase> to locate an external assembly. Now, when I run the …

c# console-application .net-assembly codebase assembly-signing
Lack of 'DotNetOpenAuth.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246' in MVC 4 project

I have downloaded project which is the effect of Pluralsight MVC 4 free tutorial videos available at Microsoft's site: http://www.…

.net asp.net-mvc-4 .net-assembly filenotfoundexception
Could not load file or assembly 'Microsoft.IdentityModel

I have developed a SharePoint provider hosted (MVC) app and hosted web application in iis of azure VM (WIN SERVER 2012). …

asp.net-mvc sharepoint-2013 .net-assembly
Retrieve Target Framework Version and Target Framework Profile from a .Net Assembly

Is there any way that I can access the values that were used for TargetFrameworkVersion and/or TargetFrameworkProfile when a .…

.net reflection .net-assembly target-framework
The *deps.json file in .NET Core

What is the purpose of *deps.json file in .NET Core? What is the reason to store references in such …

c# .net .net-core .net-assembly ildasm
Which is better for getting assembly location , GetAssembly().Location or GetExecutingAssembly().Location

Please suggest which is the best to getting executing assembly location. Assembly.GetAssembly(typeof(NUnitTestProject.RGUnitTests)).Location or Assembly.GetExecutingAssembly().…

c# .net-assembly
Server Error in '/' Application. System.Web.Http.WebHost

I'm trying to publish an ASP.NET MVC 4 Internet Application. After it's been published, I go ahead and click the …

c# asp.net-mvc-4 .net-assembly system.web
Caching reflection data

What's the best way to cache expensive data obtained from reflection? For example most fast serializers cache such information so …

c# .net garbage-collection .net-assembly