Search Results

1
vote

How can I determine whether Console.Out has been redirected to a file?

You need to use reflection - a bit grubby but the following will work: static bool IsConsoleRedirected() { var writer = Console.Out; if (writer == null || writer.GetType (). …
1
vote

Thoughts on try-catch blocks

Sometimes this is appropriate - when you're going to handle the exception higher up in the call stack. However, you'd need to do something in that catch block other than just re-throw for it to mak …
1
vote

OOP Naming: TCP vs.Tcp prefix

Generally, when it's a 2-character prefix, leave it uppercase (IPAddress) and when it's 3 characters or more, Pascal-case the prefix (TcpXxxx). There are a few exceptions to this rule (e.g. …
2
votes

LINQ Query Syntax to Lambda

Simply go: string lambdaSyntax = query.Expression.ToString(); The disadvantage compared to LINQPad is that the result is formatted all one line. …
1
vote

Assembly.LoadFrom - using Evidence overload to verify strong name signature

You can get an Assembly's public key after loading it - if it loads successfully and has a public key, then it's strong-named: Assembly assembly = Assembly.LoadFrom (...); byte[] pk …
2
votes

What’s the most efficient way to determine whether an untrimmed string is empty in C#?

Checking the length of a string for being zero is the most efficient way to test for an empty string, so I would say number 1: if (myString.Trim().Length == 0) The …
11
votes

Which LINQ syntax do you prefer? Fluent or Query Expression

Neither is better: they serve different needs. Query syntax comes into its own when you want to leverage multiple range variables. This happens in three situations: W …
7
votes

Does SqlDataReader store everything as a String?

SqlDataReader returns data as strongly-typed objects - just call the right method, e.g.: data.GetDateTime(ordinal) …
1
vote

Strange behavior in FormBorderStyle between Fixed and Sizable

I suspect what's happening is that Windows Forms is keeping the client size (i.e. inner area) the same while the border size changes. This is generally a good thing because it ensures that the wind …
1
vote

How can i match this text with a regex?

The following will do the trick: /\*<parameters>\*/(.|\r|\n)*/\*</parameters>\*/ Alternatively, if you want to exclude the outer tokens from the match …
1
vote

c# how to equate the elements of two array

This is a one-liner with LINQ: bool same = !array1.Except (array2).Any() && !array2.Except (array1).Any(); Alternatively, you could call OrderBy on each se …