Tagged Questions

115
votes
6answers
4k views

What is the purpose of a stack? Why do we need it? (MSIL)

So I am learning MSIL right now to learn to debug my C# .net applications. I've always wondered: what is the purpose of the stack? Just to put my question in context: Why is there a transfer from ...
32
votes
3answers
733 views

Caching reflection data

What's the best way to cache expensive data obtained from reflection? For example most fast serializers cache such information so they don't need to reflect every time they encounter the same type ...
10
votes
4answers
100 views

Get dependent assemblies?

Is there a way to get all assemblies that depend on a given assembly? Pseudo: Assembly a = GetAssembly(); var dependants = a.GetDependants();
8
votes
4answers
7k views

How to get the assembly (System.Reflection.Assembly) for a given type in .Net?

In .Net, given a type name, is there a method that tells me in which assembly (instance of System.Reflection.Assembly) that type is defined? I assume that my project already has a reference to that ...
7
votes
1answer
269 views

Shared AssemblyInfo for uniform versioning across the solution

I've read about this technique: http://blogs.msdn.com/b/jjameson/archive/2009/04/03/shared-assembly-info-in-visual-studio-projects.aspx Basically it means to create a SharedAssemblyInfo.cs with ...
7
votes
5answers
353 views

If statement appears to be evaluating even when condition evaluates to false

Late At Work last night, we were trying to figure out why something was failing. A validation check was failing when it shouldn't have been. We ended up adding a print statement to this code ...
7
votes
3answers
209 views

How to load an .exe as a .NET assembly?

Can I just use?: Assembly.LoadFile Not sure if this is the way to do this? But when I try that approach, it throws a Could not load file or assembly "CustomControlLib" or one of its dependencies. ...
7
votes
4answers
2k views

How to separate model, view and controller in an ASP.NET MVC app into different assemblies

At the moment I am trying to get into the ASP.NET MVC framework. For most of my test applications I used a single assembly/project. This worked fine for some smaller applications. Then I wondered how ...
6
votes
1answer
83 views

How to detect a missing .NET reference at runtime?

My application contains references to an external library (the SQL Server Management Objects). Apparently, if the library is not present on the run-time system, the application still works as long as ...
6
votes
1answer
295 views

Installing Assembly into GAC

I tried to install an assembly in GAC using new System.EnterpriseServices.Internal.Publish().GACInstall("Foo.dll"); But I could not find that installed in c:\windows\assembly\gac_msil folder. I ...
5
votes
1answer
172 views

Finding Reference to Class & Methods

I am trying to find out all the classes and assemblies which are using/referencing a particular class. Is there any way to find out through programming in C#? For example, if Class1 is ...
5
votes
2answers
156 views

How to provide .net with the pdb data after an assembly has been loaded?

Using this method Assembly.Load(Byte(), Byte()) http://msdn.microsoft.com/en-us/library/twt16z2x.aspx It is possible to provide a byte representation of the pdb file. Given that an assembly has ...
4
votes
2answers
44 views

Adding multiple Icons (Win32-Resource) to .NET-Application

it is possible to set the Application-Icon in the Project Properties. If you do this the exe will have this icon instead of the default one. this icon is a win32-resource and can also be accessed like ...
4
votes
6answers
134 views

In C# how do i get the name of the running file?

I would like to know how to pragmatically get the name of the running file not the assembly name but the name of the file in C# .NET, I tried ...
4
votes
1answer
81 views

Quite special PublicKey in .NET core assemblies

I've noticed that core .NET assemblies have PublicKey = 00000000000000000400000000000000. Not only it's shorter then those sn.exe allows to generate (min 384 bits) but also it has a lot of zeros. ...
4
votes
1answer
145 views

Retrieving DLL information in .NET

My problem: Given a list of DLL paths, find their version number and all assemblies referenced. Some may point to the same DLL but with a different path or version. My Code: Dim otherDomain As ...
4
votes
3answers
132 views

Get exactly the same assembly when compiling in .NET [closed]

Possible Duplicate: Determine whether .NET assemblies were built from the same source I want to compare assemblies in .NET to check for any changes. After looking around the web, I found ...
3
votes
2answers
211 views

Unable to find assembly - imposible to trace error

I have a website which runs in IIS 7.0 in an Integrated v4.0 application pool. Starting from today I get the below exception in the Windows event Log. The website is online for 1 month and I never got ...
3
votes
1answer
61 views

Calling an x64 assembly via COM from a 32 bit App

Short question : is it possible (on an x64 OS of course) ? If not, why exactly ? I have developed a c# plugin dll for excel 32. When compiled in x86 it works fine. When compiled in x64 the COM ...
3
votes
2answers
158 views

Marshalling Assembly from another AppDomain

Is it possible to hold a reference to an Assembly from another appdomain without having that assembly loaded into the current appdomain? I'm working on fixing a memory leak in a Windows Service that ...
3
votes
8answers
177 views

“val++” vs “val = val + 1” What is exact difference?

I created a basic console application to make such a test. short val = 32767; val++; Console.WriteLine(val); This gives me -32768 as an expected result short val ...
3
votes
2answers
498 views

Rename .NET 2.0 Executable

Does anyone know of any gotchas when changing a C# .NET 2.0 executable file name on a post build event, given that the executable is strong named and has an embedded manifest? Additionally, the ...
3
votes
1answer
172 views

.net iis cannot load file assembly

Searched and found many results and tried everything but couldnt figure it out! Created an app in VS 2008 and published to an existing iis6 server and works fine. We just got a new Windows 2008 RC2 ...
2
votes
1answer
60 views

What is the difference between Version and 'Runtime Version' in .Net?

When I open the properties window of one of the referenced dlls in my project in Visual Studio I see a Version and also a runtime version . Actually it is Rhino.Mocks library I am checking. And I see ...
2
votes
2answers
91 views

Assembly Version numbers, signed assemblies Why do I get a FileLoadExceptions

My Problem: I have a signed assembly A.dll that it versioned as 1.0.0.0 I have another assembly (lets say B.dll) that references A.dll. Once both assemblies both assemblies load fine without any ...
2
votes
1answer
26 views

Decide class of object to be created from another assembly

I have a .net assembly that exposes a public class (named A) to be created other programs using reflection (Assembly.CreateInstance). For now, it works fine. But now I have two subclasses of A, say ...
2
votes
1answer
170 views

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 assembly was compiled? The values I'm talking about are the ones ...
2
votes
2answers
488 views

Reference to assembly without strong name

Hi is there a way to reference the library without strong name? When I add reference to assembly in references and rebuild solution everything is fine, but when I call the class from this assembly ...
2
votes
2answers
101 views

Verify in advance if assembly can be found

My .net program is using an assembly, which should be installed in the GAC. If the assembly is properly installed, it will be loaded as soon as I use it the first time, which is great. If, for ...
2
votes
3answers
107 views

Looking for a FOSS tool to display a .NET assemblies link dependencies

Can anyone recommend a tool (ideally FOSS) that can analyse an .NET assembly and list its dependencies? What I am after is a tool that given a .NET exe file can produce a report showing me the .NET ...
2
votes
2answers
131 views

.NET Framework Assemblies in Reflection

I have a collection of assemblies using reflection. I want to loop through them, but I would like to ignore the .NET framework or ASP.NET framework DLL's. Is there an attribute on the assembly that ...
2
votes
1answer
269 views

asp.net 3.5 referencing project with assembly reference throws signing/strong name error in Unit Test

I have a reference to a MySQL.Data 5.2.3 assembly in a data layer, great. I currently I have small console app inteh same solution referencing JUST THIS data layer which connects just fine. I then ...
2
votes
1answer
105 views

Is there a utility that does the opposite of ilmerge?

I would like to strip code from an assembly using a command-line or GUI. There are times when assemblies contain types that are in other assemblies and this requires you to add extern alias to your ...
2
votes
1answer
89 views

How to tell ASP.NET MVC to look for controllers in a library?

This must be a trivial question to some, but I haven't found any actual information about this. I have an ASP.NET MVC web application. As I like to write reusable code, I'd like to put my Controllers ...
2
votes
7answers
843 views

The .NET equivalent of static libraries?

I'm building a tool in managed code (mostly C++/CLI) in two versions, a 'normal user' version and a 'pro' version. The fact that the core code is identical between the two versions has caused me a ...
1
vote
1answer
52 views

Assembly Version Mismatch error

i am running a Web Application which shows assembly mismatch error during loading. I looked into my hard drive and application path to find out the false assembly but i have the right version of ...
1
vote
1answer
321 views

Could not load file or assembly HRESULT: 0x80131515 (When adding controller to MVC project that has assembly references on network drive)

I've seen this: VSTS 2010 SGEN : error : Could not load file or assembly (Exception from HRESULT: 0x80131515) and none of the answers work. It also doesn't appear when I build or anything. I can run ...
1
vote
0answers
43 views

Why this assembly binding succeeded?

Usually questions about assembly binding are related to a missing assembly. This time I'd like to know why this bind worked: It was looking for ServiceStack.Common, Version=1.0.4356.8984 but it loaded ...
1
vote
1answer
53 views

Load assembly from same folder with a native DLL

I have this (native) COM server, let's call it N.dll, that calls some API from a managed assembly, let's call it M.dll. For that to work, a mixed-mode DLL exists to interop the two; let's call this ...
1
vote
2answers
128 views

How to prevent ReflectionTypeLoadException when calling Assembly.GetTypes()

I'm trying to scan an assembly for types implementing a specific interface using code similar to this: public List<Type> FindTypesImplementing<T>(string assemblyPath) { var ...
1
vote
1answer
104 views

How to use Regasm.exe to Completely Unregister a AssemblyFile

I tried the following command to unregisters AssemblyFile: regasm "AssemblyFilePath" /unregister /silent However, it still leaves the such registry entries: Windows Registry Editor Version 5.00 ...
1
vote
2answers
71 views

How to find assembly name for a .Net namespace for example: Microsoft.WIndowsAzure.ServiceRuntime

I have a generic question, and specific example. This should be easy according to all the similar questions on SO regarding assemblies for namespaces. The most common answer is found in this ...
1
vote
2answers
82 views

Linking a precompiled MSIL file into an assembly?

Is there any way to precompile an MSIL file and then have the .net linker link that into a .net assembly at compile time? So, for example. I have a project. I compile it, decompile it to MSIL, and ...
1
vote
1answer
82 views

.NET assembly binding

I have an api, MyApi, which is consumed by an application, MyApplication. MyApi has several dlls targeted to the .NET 4.0 Client Profile. For example: MyApi.Core MyApi.Domain MyApi.Providers (and ...
1
vote
1answer
273 views

Assembly cannot find referenced assembly when compiled to memory with CodeDomProvider

i am trying to compile some code to memory at runtime using a CodeDomProvider. The code I am compiling have a reference to an external assembly which I include in the parameters used when compiling ...
1
vote
2answers
149 views

Embedded Resource location within the assembly

How can we discover the location of an embedded resource within a .Net assembly? By "location", I mean the beginning and ending byte positions in the assembly. Is there any tool or some sample code to ...
1
vote
2answers
49 views

AssemblyAlgorithmIdAttribute: Why would anyone use this?

AssemblyAlgorithmIdAttribute Why would you care what algorithm the CLR uses to hash the files in your assembly? When would you use this attribute?
1
vote
4answers
93 views

Package up a WCF client into an assembly for consumers

I'm hosting a WCF service within an organisation, and I was hoping to build a client into an assembly DLL to package up and give to anyone who wants to consume the service. I could create a class ...
1
vote
1answer
215 views

Uninstall old version of Microsoft.AnalysisServices.AdomdClient from GAC

I need to uninstall an old version of this DLL from the GAC in order to run an installer, but I receive an "Access Denied" error. Does anybody have an idea on how I can remove this DLL?
1
vote
2answers
157 views

reference GAC assembly with fallback version

My project references version 2.0.0.0 of an assembly in the GAC. If version 2.0.0.0 is not available, I'd like to redirect/change the reference to version number 1.0.0.0. Some research came up with ...

1 2