1
vote
Mixing C# Code and umanaged C++ code on Windows with Visual Studio.
This question is too broad. The only reasonable answer is P/Invoke, but that's kind of like saying that if you want to program for Windows you need to know the Win32 API.
Pretty much entir …
2
votes
C#: Test if string is a guid without throwing exceptions?
Run the potential GUID though a RegEx or some custom code that does a sanity check to ensure the strig at least looks like a GUID and consists only of valid characters (and maybe that it seems to …
0
votes
Finalizers and Dispose
Is the "stop" instance variable a property? If not, there's no particular point in setting it during the finalizer - nothing is referencing the object anymore, so nothing can query the member. …
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.
…
14
votes
C# object is not null but (myObject != null) still return false
Is the == and/or != operator overloaded for the region object's class?
Now that you've posted the code for the overloads:
The overloads should probably look like the following (code …
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
Is the destructor called if the constructor throws an exception?
For C++ this is addressed in a previous question: http://stackoverflow.com/questions/147572/will-the- …
2
votes
What’s the best way to copy/fill a large array with a smaller array in C#?
Have your loop work using the Array.Copy() overload that lets you copy from one array into the a particular index in the destination array.
if (sourceArray.Length == 0) …
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 …
8
votes
How should I check if a flag is set in a flags enum?
The two expressions do different things (if fooFlag has more than one bit set), so which one is better really depends on the behavior you want:
fooFlag == (this.Foo & fooFlag) / …
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 …
8
votes
Enumerate windows like alt-tab does
Raymond Chen answered this a while back (http://blogs.msdn.com/oldnewthing/archive/2007/10/08/5351207.aspx …
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 …
