Tagged Questions
117
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
787 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
121 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();
9
votes
4answers
8k 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 ...
8
votes
5answers
363 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
1answer
317 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
3answers
220 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
96 views
“Why is my .net exe so huge” analyzer tool?
Is there a tool that can explain the size of a .NET assembly (executable or dll)?
In the olden days, there was an IDE extension that would detail the space used by a project.
It should show the ...
6
votes
1answer
87 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
331 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
3answers
85 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 ...
5
votes
1answer
176 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
160 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
6answers
140 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
84 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
150 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
136 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
276 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
66 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
173 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
180 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
532 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
181 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
0answers
58 views
How to embed a ruby gem into a C# project and require it from an embedded IronRuby script?
I have a C# project in which I have embedded an IronRuby program. The project (including my ruby script) is compiled to an .exe file in Visual Studio 2010 for distribution. I'm using a pattern ...
2
votes
1answer
36 views
How to add PNG resource in Visual Studio 2010?
i have a PNG (i.e. a compressed image) that i want to include in my assembly (i.e. application).
How can i do it?
Bonus Chatter
i tried adding a PNG resource to my assembly in Visual Studio 2010:
...
2
votes
1answer
72 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
100 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
2answers
86 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 ...
2
votes
1answer
28 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
200 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
1answer
322 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 ...
2
votes
2answers
590 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
105 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
113 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
140 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
282 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
106 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
95 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
874 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
15 views
Why does GetAssemblyName mscorlib throw an exception?
Have a .NET 4 WinForms App. When I try to do the following:
GetAssemblyName(@"C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\e0e5fbe72e8813a135fc878ff32b4bee\mscorlib.ni.dll");
I get the ...
1
vote
1answer
29 views
How to identify a process for an assembly?
I have different assemblies and different processes each process will load few of assemblies from my bin.
How do can we find which assembly belongs to which process?
1
vote
2answers
39 views
Working with AppDomain.AssemblyResolve event
I'm trying to use AppDomain.AssemblyResolve event to handle exceptions while resolving Assemblies of some dll loaded at runtime ( SerializationException for dynamically loaded Type ).
When the event ...
1
vote
1answer
57 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
578 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
55 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
59 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
166 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
129 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
90 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 ...