0
votes
Why aren’t variables declared in “try” in scope in “catch” or “finally”?
If we ignore the scoping-block issue for a moment, the complier would have to work a lot harder in a situation that's not well defined. While this is not impossible, the scoping error also forces y …
1
vote
How do I determine the value of a generic parameter on my class instance
I read your question completely differently than the other answers.
If the evaluate signature can be changed to:
public Type Evaluate<T>(IExtender<T> it)
{
…
0
votes
Why is try {…} finally {…} good; try {…} catch{} bad?
While the following 2 code blocks are equivalent, they are not equal.
try
{
int i = 1/0;
}
catch
{
reader.Close();
throw;
}
try
{
int i = 1/0;
}
finally
{
reader.Close() …
0
votes
How would you refactor this LINQ code?
I'd be wary of the solutions of the form:
// from Keith
from x in GetInitialResults()
//either we don't need to check, or the check passes
where string.IsNullOrEmpty(ddlFile …
0
votes
Reasons to NOT run a business-critical C# console application via the debugger?
Aside from the debug code possibly having different code paths (#ifdef, Debug.Assert(), etc) code-wise it will run the same.
A little scary mind you - set breakpoints, set the …
3
votes
What does the “private” modifier do?
Private is only the default for methods on a type, but the private modifier is used elsewhere.
From C …
0
votes
Redundancy in C#?
It's only redundant in a small set of circumstances.
Consider interface-based programming.
IList<int> list = CreateList(numberOfPeople);
where
…
3
votes
Is it correct to use inheritance instead of name aliasing in c#?
I'd agree with not using an alias in that manner. Nobody in your team should be using aliases in the manner presented; it's not the reason aliasing was provided. Additionally, from the way …
1
vote
How to make a method exclusive in a multithreaded context ?
The code is fine, but would agree with changing the method to be static as it conveys intention better. It feels odd that all instances of a class have a method between them that runs synchronously …
6
votes
When should I use GC.SuppressFinalize()?
SuppresFinalize should only be called by a class that has a finalizer. It's informing the GC that this object was cleaned up fully.
The recommended IDisposable pattern when you …
2
votes
Retrieving the original error number from a COM method called via reflection
Just want to offer an update to @sharvell's catch code. Unless you're absolutely sure InnerException is a COMException, it's better to safely test it first. Otherwise you'll have an exception in yo …
1
vote
Probably BAD coding style … please comment
Well, if it were me, it would be a variation on 2. Always prefer readability over one-liners. Additionally, always extract a method to make it clearer.
your calling code becomes
…
0
votes
Is there anything inherently wrong with long object invokation chains?
OK as others point out the code isn't great because you're locking in the code to a specific hierarchy. It can present problems debugging, and it's not nice to read, but the major point is the code …
2
votes
Does This ASP.NET Consultant Know What He’s Doing?
Asp.net sessions, if you're using the built-in providers, won't accidentally give you someone else's session. SomeProprietarySessionManagementLookup() is the likely culprit and is retu …
5
votes
