1
vote
Convention question: When do you use a Getter/Setter function rather than using a Property
I tend to use setters when a value is write-only or there are multiple values to be set at once (obviously). Also my instinct, like yours, is to use getters and setters as a signal that a process m …
1
vote
Threadsafe foreach enumeration of lists
So the requirements are: you need to enumerate through an IList<> without making a copy while simultaniously adding and removing elements.
Could you clarify a few things? Are insertions …
1
vote
Business Objects, Validation And Exceptions
Your business objects should throw exceptions for bad inputs, but those exceptions should never be thrown in the course of a normal program run. I know that sounds contradictory, so I shall explain …
1
vote
App_Code folder issues
I have noticed a mismatch sometimes between the IDE parser and the compiler whenever a compile-time error occurs in a referenced assembly or code file. In that circumstance the IDE will correctly i …
0
votes
DateTimePicker: pick both date and time
I'm afraid the DateTimePicker control doesn't have the ability to do those things. It's a pretty basic (and frustrating!) control. Your best option may be to find a third-party control that does wh …
54
votes
Redundancy in C#?
The reason the code appears to be redundant is because, to a novice programmer, it appears to be defining the same thing twice. But this is not what the code is doing. It is defining two separate t …
2
votes
What does the “private” modifier do?
As pointed out by Jon Skeet in his book C# In Depth, there is one place in C# where the private keyword is required to achieve an effect.
If my memory serves correctly, the private …
0
votes
Is there something like Python’s getattr() in C#?
There's the System.Reflection.PropertyInfo class that can be created using object.GetType().GetProperties(). That can be used to probe an object's properties using strings. (Similar methods exist f …
7
votes
What is the difference between myCustomer.GetType() and typeof(Customer) in C#?
GetType() is used to find the actual type of a object reference at run-time. This can be different from the type of the variable that references the object, because of inheritance. typeof( …
0
votes
What is the proper way to ensure a SQL connection is closed when an exception is thrown?
I'm guessing that by "_SqlConnection.State == ConnectionState.Closed" you meant !=.
This will certainly work. I think it is more customary to contain the connection object itself inside a …
0
votes
Calculating the elapsed working hours between 2 datetime.
There's also the recursive solution. Not necessarily efficient, but a lot of fun:
public decimal ElapseddWorkingHours(DateTime start, DateTime finish)
{
if (start.Date == finish …
1
vote
Fastest way to convert a possibly-null-terminated ascii byte[] to a string?
One possibility to consider: check that the default code-page is acceptable and use that information to select the conversion mechanism at run-time.
This could also take into account whethe …
0
votes
Using events rather than exceptions to implement error handling
Another major problem with this approach are concurrency concerns.
With traditional error handling, locks will be released as control moves up the call stack to the error handler in a contr …
2
votes
C# “Using” Syntax
Any exceptions that are thrown in the initialization expression of the using statement will propagate up the method scope and call stack as expected.
One thing to watch out for, though, is …
1
vote
Reading Comma Delimited File and Putting Data in ListView - C#
Just loop through each of the arrays in that you've created and create a new ListViewItem object (there is a constructor that takes an array of strings, I believe). The pass the ListViewItem to the …
