Search Results

4
votes
5answers
284 views

Your Favorite LINQ-to-Objects Queries

With LINQ, a lot of programming problems can be solved more easily - and in fewer lines of code. What are some the best real-world LINQ-to-Objects queries that you've writt …
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

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. …
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 …
1
vote

.NET 3.5 vs. .NET 3.0

You're right: there is definitely an advantage in not requiring that users download another framework. A couple of tips: if you're going to target FW3.0, you can still use Studio 2008 rathe …
2
votes

Setting DefaultValue for properties of non-Constant types?

Instead of applying the DefaultValue attribute, write the following two methods: bool ShouldSerializemySize() { ... } void ResetmySize() { ... } In ShouldSerialize …
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 …