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
2answers
101 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
271 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
210 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. ...
6
votes
2answers
125 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
296 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
173 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
3answers
557 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
47 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
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
3answers
425 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
110 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
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
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
2answers
424 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
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 ...
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
33 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
2answers
178 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
2answers
490 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
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
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 ...
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
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
0answers
40 views

Visual Studio 2010 - EmbeddedResource Assembly set wrong .Net framework Version

I have a solution containing several projects (some in .Net 4.0 and some in 3.5 and 2.0) Among those projects I have one project containing embedded resources only, this project is set to target ...
1
vote
2answers
66 views

Load two DLLs with different versions

I am developing a project in which I have to create a new feature. Now I am facing a problem that there is a DLL reference in a project with old version and for developing the feature I need a new ...
1
vote
2answers
69 views

Use external EXE as startup project

I have a solution which contains a few projects and an external exe. When I build, I want to copy the exe to my build folder, as well as build the projects and copy my dlls to the build folder. Is ...
1
vote
1answer
54 views

Using Codebase to load assembly

Based on this question, I tried using <codebase> to locate an external assembly. Now, when I run the program, I get an error message saying that the private assembly was located outside the ...
1
vote
2answers
73 views

Linking assemblies with partial classes

I have a common project called common. Inside is a class called ExtensionMethods which is used by legacy applications. I want to break apart the class into multiple files, but keep the name the ...
1
vote
1answer
61 views

Load serialized objects when only the interface of the class is known

I'm trying to add an option to use plugins in my image processing application in C#. I've used Assembly.LoadFrom method to load the class library, then looked for the interface and used ...
1
vote
1answer
79 views

How does Assembly.Load(byte[]) work?

I was just wondering what happens if I was to load the same assembly bytes twice within a web app. For example I have this code byte[] assem = System.IO.File.ReadAllBytes(appRoot + ...
1
vote
2answers
120 views

How to check for compile errors before compiling with CodeDom

I'm using the CodeDom to allow custom scripts (C#) to be run in an application I'm creating. While writing the script I would like to be able to check for compile errors. The code gets added to and ...
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
3answers
224 views

CLR Assembly C# inside SQL Server

Is it possible to make a big project in C# (lots of functions), then, Create CLR Assembly for it, then, In SQL Server IN A STORED PROC, call a function that is in the assembly, The table (which I ...
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
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
vote
1answer
90 views

How to call a specific method on an object after creating it via its constructor using reflection in .NET?

I have a WPF application that I want to launch using: Assembly.LoadFrom It works fine but after this, I am trying to call it's default constructor: LayerView.MainWindow(); Then, call the Show ...
1
vote
0answers
75 views

NSevriceBus Assembly Version Error

I have an issue when trying to load the NServiceBus assembly from a client machine. The software runs correctly from my development box but once rolled out I get the following error: Could not load ...

1 2