1
vote
C# String output: format or concat?
If you're dealing with something that needs to be easy to read (and this is most code), I'd stick with the operator overload version UNLESS:
The code needs to be executed millions of …
12
votes
C#: Try-catch every line of code without individual try-catch blocks
Refactor into individual, well-named methods:
AdjustFormWidgets();
SetContactTitle(txtTitle.Text);
SeasonCasserole();
Each of those is protected appropriately. …
1
vote
Resources that have to be manually cleaned up in C#?
As others have said, using is your friend.
I wrote this blog entry about how to implement ID …
15
votes
C# Potential Interview Question…Too hard?
Too hard? No, but what is your goal in the question? What are you expecting to get from your interviewee? That they know this particular syntactic quirk? That either means that they've studied …
0
votes
C# Lambda expression, why should I use this?
It's a way of taking small operation and putting it very close to where it is used (not unlike declaring a variable close to its use point). This is supposed to make your code more readable. By a …
0
votes
Is abstracting data type (sometimes) a good idea?
What you don't ask and don't answer are the questions that best determine if the new types are important:
What is the projected, realistic lifetime of this system? If the answer i …
1
vote
1
vote
What’s a nice way of building a wParam or lParam in C#? (Something friendlier than shift operators?)
public static ushort LowWord(uint val)
{
return (ushort)val;
}
public static ushort HighWord(uint val)
{
return (ushort)(val >> 16);
}
public static uint BuildWParam(ushort l …
0
votes
How to move scroll bar up by one line? (In C# RichTextBox)
If you can get the scroll control for the rich text box, you should be able to get its SmallChange property and use that to scroll the text.
…
0
votes
Iterating through list and creating summary lines on the fly
Your desired output feels like you want to make a data structure that represents your summary data. You want to pair a date with a list of TestClass objects, then have a collection of those. You …
32
votes
What is the C# Using block and why should I use it?
If the type implements IDisposable, it automatically disposes it.
Given:
public class SomeDisposableType : IDisposable
{
...implmentation details...
}
T …
8
votes
foreach vs someList.Foreach(){}
For fun, I popped List into reflector and this is the resulting C#:
public void ForEach(Action<T> action)
{
if (action == null)
{
ThrowHelper.ThrowArgumentNull …
2
votes
In C#, should I use string.Empty or String.Empty or “” ?
I use the third, but of the other two the first seems less odd.
string is an alias for String, but seeing them across an assignment feels off.
…
3
votes
What is the best way of implementing a stack of more than one type of object in C#?
What's wrong with putting the BackTrack object in anyway and have it be null if there is no back track? You can add a helpful property like bool IsBacktrack { get { return _backTrack != null; } } …
0
votes
