Search Results

0
votes

Order of items in classes: Fields, Properties, Constructors, Methods

There certainly is nothing in the language that enforces it in any way. I tend to group things by visibility (public, then protected, then private) and use #regions to group related things function …
0
votes

Modifying default tab size in RichTextBox

Followup question: Does setting SelectionTabs alter the RTF output from the control so that it will appear the same way in other RTF viewing tools? …
1
vote

What is the best approach to centralzing error messages in an application?

Does anyone else find the use of .Net resource files constricting? I dislike having a bottleneck file that will always have multiple developers contending for it. I think it also makes refactoring …
-1
votes

Is there a way to cast generic lists to lists of interface/base class types?

This doesn't answer your question (or the point of the exercise I guess :), but I'd just use reflection in this case by attaching special attributes to the properties of interest. …
7
votes

What is the worst C#/.NET gotcha?

Garbage collection and Dispose(). Although you don't have to do anything to free up memory, you still have to free up resources via Dispose(). This is an immensely easy thing to f …
1
vote

How can I know if a process is running?

Process.GetProcesses() is the way to go. But you may need to use one or more different criteria to find your process, depending on how it is running (i.e. as a service or a normal app, whether or n …
3
votes

How to get a screen capture of a .Net control programmatically?

Here is a link to a codeproject page with a detailed description... …
0
votes

How can I get a collection of all the colors in System.Drawing.Color?

Here is an online page that shows a handy swatch of each color along with its name. …
0
votes

Simplest possible key/value pair file parsing in .NET

Format the file this way: key1=value1 key2=value2 Read the entire file into a string (there is a simple convenience function that does that, maybe in the File or string class), and …
2
votes

Code documentation: How much is too much?

I think a good part of the problem here is the verbose and crufty XML documentation syntax MS has foisted on us (JavaDoc wasn't much better either). The question of how to format it is, to a large …
0
votes

C# Syntax - Your preferred practice for getting 2 or 3 answers from a method

Another solution is to return a dictionary of named object references. To me, this is pretty equivalent to using a custom return class, but without the clutter. (And using RTTI and reflection it is …
0
votes

NUnit with night build, how to get errors easily?

We have a nightly test driver based on FIT with a special fixture for running NUnit on DLLs. The testing fixture captures the output and looks for the final summary line that says how many tests pa …
0
votes

Is everyone here jumping on the ORM band wagon?

I dislike the code generation used in most ORMs. In fact, code generation in general I find to be a weak tool that is usually indicative of using the wrong language in the first place. In p …
1
vote

DirectX or OpenGL

I've used both OpenGL and DirectX. I think the performance is pretty similar. I prefer the programming model of OpenGL -- especially its handling of transformations, and direct support of picking o …
0
votes

Useful mini patterns (not design patterns)

For Windows forms I'll often use the Tag field to put a psuedo-command string so that I can have a single event handler for a shared set of buttons. This works especially well for buttons that do p …

1 2 next
15 30 50 per page