tags:

views:

983

answers:

2

Simple Question; Is there an easy way to check whether a .NET 1.1 assembly is debug-compiled or not?

A: 

It depends on how you want to check. If you want to check in code when you are actually running, if the code is in debug mode, you can use:

Debug.Assert(MyFunction())

Using that code, MyFunction will only run when the dll it is located in is compiled in debug mode.

Kibbee
+3  A: 

Try here

HTH

ZombieSheep