| Thread | Last Post | Replies |
|
| Load an object reference onto the stack ??? | 03 May 2006 19:36 GMT | 3 |
I have a class CodeGen in which GenerateILBody is a method that uses ILGenerator.Emit to create the IL code as method body for a dynamic method DynMethod. GenerateILBody at runtime must call another method CallBack of the class CodeGen.
|
| Contains method doesn't work on BindingList<T> | 03 May 2006 16:15 GMT | 1 |
I have a BindingList<T> collection and I am adding concrete object T in to the binding list. Before adding them, I want to verify if object with same data exist in the collection. When I use Binding list’s Contain method to check if object exist in the collection, it always ...
|
| VB.Net evaluates 'if' conditions unnecessarily? | 03 May 2006 00:35 GMT | 7 |
in c# i can run the following code without risk of NullReferenceException: if(textNode != null && !String.IsNullOrEmptytextNode.InnerText)) the reason it is safe to run is because if the first condition is
|
| Getting AppSettingsReader to use app.config file changes at runtime | 02 May 2006 10:00 GMT | 2 |
Guys, When writing unit tests for our assemblies we'd like to change configuration values at runtime for some tests i.e. to test all code paths are executed. e.g. one method would create a test with a value set to true and the next
|
| Application running in Framework 2.0 ? | 02 May 2006 07:12 GMT | 2 |
I have my application built with Framework1.1. 1. Will my application work in a machine where only 2.0 is present ? 2. what are the steps i must do in order to make my 1.1 application work with 2.0 ???
|
| Internet Explorer Ignoring supportedRuntime Directive | 02 May 2006 04:50 GMT | 2 |
I have an html application that uses an embeded .Net user control - and has specified the startup attribute for supportedRuntime for 1.1.4322 - inside of a XML configuration file. When I run this application it ignores the runtime directive and loads up
|
| DllImport attribute and platform independence | 01 May 2006 05:44 GMT | 2 |
Is it possible to redistibute a .net app compiled with vs to linux without recompiling with say mon compiler? And what if I import functions from external non-.net dlls like [dllimport("fmod.dll")]
|