February 18th, 2012 06:53 AM
It's probably due to the fact that a lot of C# devs were previously Visual C++ devs and MFC apps. had an m_ naming convention for member variables.
We don't really need it but some sort of...
February 14th, 2012 11:32 AM
The convention is to use Camel Case for all local variables and method parameters, so your first example would be OK.
The second example is Hungarian notation and is specifically not recommended...
February 14th, 2012 10:57 AM
You could try the free Visual C++ 2010 Express. Since you are a TextPad user you will find that the editor is fairly similar, so it will ease the familiarisation process. Though that will be the...
February 14th, 2012 10:47 AM
See Design Guidelines for Developing Class Libraries.
February 13th, 2010 09:51 AM
Not a direct answer to your question but you may find Math.Net and Solver Foundation useful.
November 30th, 2008 09:55 AM
See here C++ Applications
November 8th, 2008 05:11 AM
It is dead in the sense that Microsoft is not developing it any further or supporting it beyond allowing the runtime to run on Vista and Windows 2008. There is nothing to stop you continuing to write...
August 17th, 2008 05:44 PM
I'm aware of that link but I couldn't care less what its says. I've used IE 6, IE 7, Opera (various versions up to current), Firefox 1.x to current and IMO Firefox is still the best. The relevant...
August 17th, 2008 04:33 PM
MS provides a free Office 2007 Compatibility pack which is available for Office 2000 which means I can in fact open docx documents. Of course, had I still been using Office 97 I'd have been in...
August 17th, 2008 02:32 PM
Well, in this case it's not "letting you get away with anything." It's conforming to the standard!
Why? It conforms to the standard! Or are you saying that the standards committee made the...
August 17th, 2008 09:20 AM
You're out-of-date. That behaviour was fixed in VC++ 2003.
Actually, rather than doing their own thing, MS was merely sticking to original C++ behaviour regarding scope and then being slow to...
August 17th, 2008 08:00 AM
OK, yes I agree with you there. There is some excellent open source software around. I use quite a lot myself. Recently I've been using WatiN for example. Superb. Its documentation isn't that great...
August 17th, 2008 05:32 AM
In my experience, open source software ranges from poor to excellent; no different from commercial software.
Yes. The Windows Server OSes (at least 2003 and 8) seem to be rated more favourably...
December 26th, 2007 12:10 PM
Look up ListItem. It has a key and value.
ddCombo.Items.Add(new ListItem("HelloWorld", 1));
December 23rd, 2007 07:29 AM
Yes. Basically, I just posted the first bit of code I could find that made use of a call to Assembly.GetType(). Hopefully this should be enough for the OP to be getting on with. But elaboration does...
December 22nd, 2007 12:28 PM
Thanks for that correction. :)
December 22nd, 2007 09:03 AM
VS 2008 is available now to MSDN Subscribers. All the VS 2008 Express editions are available now to everyone. Also the .NET 3.5 runtime is.
The official launch date for VS 2008 is the end of...
December 22nd, 2007 08:43 AM
From an old (.NET 1.1) code snippet I have:
Assembly assembly = Assembly.GetExecutingAssembly();
// Find out from config file which ContinentFactory to create
string continentFactory =...
December 21st, 2007 10:49 AM
I think you're stuck with C++ then.
December 21st, 2007 05:27 AM
Sounds like you need a multi-dictionary. The free PowerCollections library on codeplex provides such a data structure.
PowerCollections
MultiDictionary
Here's a usage example:
...