Tagged Questions
A group of classes and name-spaces compiled into an exe or a dll file, written in a .Net specific language like C# or VB.Net.
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
732 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
2answers
100 views
Build resource assemblies with AssemblyBuilder
Scenario: I want to create satellite assemblies which are resource assemblies.
This assembly has only compiled resources in it (ResourceWriter).
The goal is to create resource ...
8
votes
2answers
2k views
Best way to check if a DLL file is a CLR assembly in C#
What is the best way to check if a DLL file is a Win32 DLL or if it is a CLR assembly. At the moment I use this code
try
{
this.currentWorkingDirectory = ...
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
268 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
208 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 ...
7
votes
3answers
4k views
WebResource.axd blank or not found
I'm trying to export a control library in a .dll for other developers in the office to consume.
The solution I original created looks like this:
Solution 1:
- Mri.Controls (Class Library)
- ...
6
votes
2answers
124 views
benefit of signing dll with strong name
I have a c# solution that contains multiple c# class libraries. I am being doing some research recently and it is suggested that the outputted assemblies from my libraries should be signed, making ...
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
247 views
How to load an assembly from a Stream or byte[] in WP7?
I want to load an assembly at runtime using either a Stream or a Byte array.
In .net you can use Assembly.Load(Byte[], Byte[]) http://msdn.microsoft.com/en-us/library/twt16z2x.aspx
In standard ...
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 ...
6
votes
4answers
972 views
How to access classes in another assembly for unit-testing purposes?
I'm jumping into unit-testing the Visual-Studio 2008 way, and I'm wondering what's the best way to accomplish cross-assembly class access for testing purposes.
Basically, I have two projects in one ...
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
155 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 ...
5
votes
3answers
552 views
Why I cannot access the C:\WINDOWS\assembly\GAC Folder?
I find the path of Microsoft.Office>interop.Excel under the Solution/References is
C:\WINDOWS\assembly\GAC\Microsoft.Office.Interop.Excel\11.0.0.0__71e9bce111e9429c\Microsoft.Office.Interop.Excel.dll
...
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
87 views
What is the order of returned Types by Assembly.GetTypes()?
If I get the list of types in my AppDomain, is there an inherent ordering to these types?
List<Type> myTypes = new List<Type>();
foreach (Assembly a in ...
4
votes
1answer
219 views
Effect of LoaderOptimizationAttribute
I have written a small piece of code regarding the dynamic loading of assemblies and creating class instances from those assemblies, including an executable, a test lib to be dynamically loaded and a ...
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 ...
4
votes
3answers
424 views
Looking for .NET Assembly in a different place
How can I tell my .NET application where to look for a particular assembly which it needs (other than the GAC or the folder where the application runs from)?
For example I would like to put an ...
3
votes
3answers
106 views
Why AppDomain.CurrentDomain.BaseDirectory not contains “bin” in asp.net app?
I have a web project like:
namespace Web
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
...
3
votes
2answers
207 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
5answers
88 views
Assembly.GetTypes - why use this if GetExportedTypes is available?
I'm confused about what scenarios you would use one or the other.
If you have an assembly with a some public and private (or internal) types in it, then only the public types should be available from ...
3
votes
2answers
232 views
Making TeamCity Version Match .NET Assembly Version
Right now our assemblies have a version number like 2.0.831.0. As I understand it, that's major version, minor version, date and build number. If I make a change and build again on the same day it's ...
3
votes
1answer
64 views
Replacing the location from which the runtime looks assemblies on the fly
We have an application that has some "Utils" under it (a few simple programs).
These utils are relying on a few shared DLLs that our application is also using, and so, we would like to distribute ...
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
423 views
Assembly file renaming and Assembly.LoadFile
So here is the situation:
I have an assembly called Lib1.dll. For some reason (not relevant to the question) I had to rename the assembly file name to Lib1New.dll, now while trying to load the ...
3
votes
2answers
497 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
2answers
51 views
location of .snk file and management of it
I am currently setting up my .net libraries to be signed with a strongly typed key. I am using .snk file to sign my dll's on a per solution basis. So for each solution, it has its own .snk file. Is ...
2
votes
1answer
32 views
When is it safe to wrap in a conditional code requiring an assembly that may not be present?
When, if ever, is it safe to wrap behind a conditional code that requires an assembly that may not be present?
For example:
if (SafeCheckForOptionalAssembly()) {
// Code requiring an optional ...
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
2answers
177 views
How to Programmatically Check c++ DLLs and C# dlls for references to Debug DLLS to automate testing procedure
Have ran into this issue a few too many times and need this to be an automated approach:
I have multiple DLLs that are constantly being built/changed that multiple projects use
I have created a c# ...
2
votes
1answer
169 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
484 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
0answers
302 views
How to use JSON.NET correctly when deseralizing from embedded DLL?
I'm writing C# code in Visual Studio. I add the embedded DLL inside the project, I am dynamically loading the assemblies. We use JSON.NET to serialize and deserialize objects with type ...
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
1answer
168 views
Proxem's Antelope: interface not found “ISentenceSplitter”
I need to do some Natural Language Processing on various text inputs from user in a C# based desktop application. I am using Antelope for this purpose. The first step is to split the text into ...