1
vote
Same source code on two machines yield different executable behavior
Can you run the program on the build machine under a debugger?
If so, then debug the problem - there's no need to guess.
Have the debugger on the dev machine catch …
1
vote
Avoiding double-thunking with C++/CLI properties
I don't know the answer, but it seems a quick look in ildasm or Reflector would give you the answer.
If you do this, you should post it here.
…
0
votes
How do you get the root namespace of an assembly?
Namespaces have nothing to do with assemblies - any mapping between a namespace and the classes in an assembly is purely due to a naming convention (or coincidence).
…
10
votes
Good example of use of AppDomain
Probably the most common one is to load assemblies that contain plug-in code from untrusted parties. The code runs in its own AppDomain, isolating the application.
Also, it's not possible …
1
vote
Saving a SecureString
If you mean saving the SecureString's encrypted bytes then this will not work - the key for the SecureString is tied to the user and process. Read in those bytes in a different process or for a d …
4
votes
When should I use GC.SuppressFinalize()?
you're telling the system that whatever work would have been done in the finalizer has already been done, so the finalizer doesn't need to be called. From the .NET docs:
Obj …
2
votes
What are the best resources for learning CIL (MSIL)
.NET Reflector is great for examining the IL produced by C#/VB.NET.
It's a wonderful learning tool.
…
2
votes
Trace vs Debug in .NET BCL
I'd look at using log4net for tracing as it's capabilities are much more flexible and robust.
But for true debug messages that I never intend for anyone other than me or an internal tester …
0
votes
Which Version of StringComparer to use
The Invariant Culture exists specifically to deal with strings that are internal to the program and have nothing to do with user data or UI. It sounds like this is the case for this situation. …
0
votes
What does “Directory.Delete( “path”, false )” do?
Suppose the intent of the code is to delete directories only if they're empty. Setting the second parameter to false enforces that policy/intent.
…
3
votes
What’s the difference between the System.Array.CopyTo() and System.Array.Clone()?
One other difference not mentioned so far is that
with Clone() the destination array need not exist yet since a new one is created from scratch.
with CopyT …
2
votes
How to read from a memory mapped I/O port in .Net?
To expand on Adam's answer, you can't even perform memory-mapped I/O from a Win32 appl …
1
vote
Lightweight .NET debugger?
For a bit nicer interface than MDbg or cordbg take a look at DbgCLR - a cut-down version of the Visual Studio debugger (at least it looks like one) that handles only managed code. It comes with th …
1
vote
How to determine whether a Windows application is offscreen?
All the basics on multiple monitor support from June 1997 Microsoft Systems Journal:
http://www.microso …
0
votes
C#: Force Compiler error on use of myObj.ToString()
This is interesting - I would have expected your code to produce a compile time error because Foo.ToString() method in the Foo class is private.
I understand that …
