1
vote
7answers
207 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 versio …
3
votes
3answers
60 views
Looking for .NET Assembly in a different place
Hello Devs,
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 examp …
0
votes
2answers
128 views
.NET Framework get running processor architecture
There is an enum of all supported processor architectures here: http://msdn.microsoft.com/en-us/library/system.reflection.processorarchitecture.aspx
Is there any way to determine …
3
votes
2answers
149 views
Best way to check if a dll is an clr assembly in C#
What is the best way to check if a dll is a win32 dll or if it is a clr assembly. At the moment I use this code
try
{
this.currentWorkingDirectory = Pa …
2
votes
4answers
158 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 t …
3
votes
4answers
480 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 …
1
vote
1answer
247 views
How to import a net assembly
Hello,
I downloaded zlib.NET and there's a file that I must import,its named "zlib.net.dll".
My question is :How do I import that file so I can use it in C# Express 2008 like "Sy …
0
votes
1answer
110 views
Using reflection to determine assembly module type
How would one use .net reflection to determine the type of the executing assembly, by type I mean dll or exe. Currently its possible to do something like:
Assembly.GetExecutingAss …
5
votes
3answers
671 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 (Clas …
1
vote
2answers
234 views
Why must I chain reference assemblies?
My project references an assembly (will call it X) that references another assembly (will call it Y).
When I try to compile my project, it demands that it should reference assembl …
0
votes
1answer
307 views
Why does my App.Config codebase not help .NET locate my assembly?
I have the following client application and its corresponding config file:
namespace Chapter9
{
class Program
{
static void Main(string[] args)
{
…
