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 …
1
vote
TDD and Mocking out TcpClient
Using the Adapter pattern is most definitely the standard TDD approach to the problem. You could, however, also just create the other end of the TCP connection and have your test harness drive that …
1
vote
What’s better in regards to performance? type[,] or type[][]?
I believe that [,] can allocate one contiguous chunk of memory, while [][] is N+1 chunk allocations where N is the size of the first dimension. So I would guess that [,] is faster on initial alloca …
1
vote
returning data via webservice c#
There is no way to get the binding behavior you automatically get with a DataSet if you are going through a Web Services data layer. You would have to create your own proxy class that supports all …
0
votes
Remove repetitive, hard coded loops and conditions in C#
If you want to hide the traversal of the tree-like structure you could create an IEnumerator subclass that hides the "ugly" looping constructs and then use CompareTo interface:
MyTr …
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 …
0
votes
Why can’t a class extend its own nested class in C#?
I think the nesting is meant to represent that the nested type is part of the definition of the nesting type. With that interpretation, the limitation makes sense because at the time the c …
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
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 …
0
votes
How to return a reference to a string in c#?
You don't need to return a reference to achieve your goal. String types are reference types but has special handling for comparisons. So if you just return a string from TestIt the equality check w …
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 …
