1
vote
Unescaping angle-brackets through System.Xml.XmlWriter
WriteString writes your content as a literal, and &, < and > are illegal in XML text, so they are escaped.
If the other end is not unescaping them, that's where the problem lies. …
1
vote
How do I best localize an entire app to many different languages?
Microsoft's recommended approach is to use satellite assemblies, as described in Packaging and Deploying Resources …
0
votes
Define an interface in C++ that needs to be implemented in C# and C++
The other approach is to use a 'flat', C-style API. You might as well use extern "C" to prevent accidental overloading. Use a DEF file to explicitly name the exported functions, so the …
3
votes
Fastest api for rendering text in WinForms?
A Microsoft developer has posted a GDI vs. GDI+ Text Rendering Performance article on his blog which answers …
0
votes
What’s the best way to learn C# quickly?
I have a C++ background.
I read:
"Applied Microsoft .NET Framework Programming" (Jeff Richter)
"Programming Microsoft .NET" (Jeff Prosise)
then answered loads of que …
1
vote
Assistance porting commctrl commands to C#
Why are you not using a Windows Forms TreeView control? If you are using this control, set the control's CheckBoxes property to true to enable check boxes, and set the Checked property on the nodes …
5
votes
Calling base.Dispose() automatically from derived classes
The standard pattern is for your base class to implement IDisposable and the non-virtual Dispose() method, and to implement a virtual Dispose(bool) method, which those classes which hold disposable …
3
votes
What’s the fastest way to copy the values and keys from one dictionary into another in C#?
There's nothing wrong with a for/foreach loop. That's all a hypothetical AddRange method would do anyway.
The only extra concern I'd have is with memory allocation behaviour, because adding …
0
votes
How to communicate with a windows service from an application that interacts with the desktop?
Funnily enough I was going to suggest Remoting! The http://go-mono.com/archive/1.0/features.html">Mono 1.0 Release Notes (from archive.org because the original location is missing) mention System.R …
1
vote
How to wrap an existing memory buffer as a DC for GDI
Use CreateDIBitmap rather than CreateDIBSection.
…
1
vote
How to prevent the ObjectDisposedException in C# when drawing and application exits
It shouldn't be possible for this to happen. If the button is created on the same thread as the window, they share a message pump and the Paint handler cannot be interrupted to handle the exit butt …
1
vote
Which language should I pick up: VB.Net or C#
Learn C#. You need a clean break from VB6, otherwise you'll be tempted to keep using the legacy functions. That's not to say that they don't work, but that a lot of VB6's functions fell into the pi …
4
votes
How do I test if another installation is already in progress?
See the description of the _MSIExecute Mutex on MSDN.
…
1
vote
GDI+ / C#: How to save an image as EMF?
A metafile is a file which records a sequence of GDI operations. It is scalable because the original sequence of operations that generated the picture are captured, and therefore the co-ordinates t …
2
votes
How can I share application configuration in a .net application?
Instead of adding <add> elements to your <appSettings> section of your config file, you can add a file= attribute to the <appSettings> …
