1
vote
Why use .NET?
I agree with the low cost of entry being an attraction to .NET. In addition to only needing notepad (which is true for Java, PHP and other technologies), Microsoft gives away express …
7
votes
Best way to bind Windows Forms properties to ApplicationSettings in C#?
If you open your windows form in the designer, look in the properties box. The first item should be "(ApplicationSetting)". Under that is "(PropertyBinding)". That's where you'll find the option to …
1
vote
Why can’t you bind the Size of a windows form to ApplicationSettings?
I agree with Rob Cooper's answer. But I think Martin makes a very good point. Nothing like having users open your application and the app is off-screen!
So in reality, you'll want to combi …
0
votes
Use of var keyword in C#
I don't understand why people start debates like this. It really serves no purpose than to start flame wars at then end of which nothing is gained. Now if the C# team was trying to phase out one st …
0
votes
How do I capitalize first letter of first name and last name in C#?
The suggestions to use ToTitleCase won't work for strings that are all upper case. So you are gonna have to call ToUpper on the first char and ToLower on the remaining characters.
…
0
votes
Parsing C#, finding methods and putting try/catch to all methods
Since you are posting a question here, I am sure this is one of those things you just have to do. So instead of banging your head against an unyielding wall, why not do what Scott suggested and us …
0
votes
Parsing C#, finding methods and putting try/catch to all methods
So you are not really looking to put the same exact try-catch block in each function, right? You are going to have to tailor each try-catch to each function. Wow! Seems like a long way to "simplify …
0
votes
How do you write code at home?
I don't believe you can legally use your company's licensed software at home (unless you are working on company projects). But I think the combination of the express editions of VS and SharpDevelop …
17
votes
How do you write code at home?
A good way to get Microsoft tools for free is to attend Microsoft Events. In the past, I have gotten pro versions of VS 2005, VS 2008, SQL Server 2005 (standard), BizTalk. All for just attending …
0
votes
Should I avoid Alternative Control Syntax?
Except for when it's used in the most basic scenarios, I'll say avoid it. If 2 constructs are compiled to the same exact MSIL, why use the one that's difficult to understand?
…
0
votes
How can I show that a method will never return null (Design by contract) in C#
Document it and provide the source code.
…
2
votes
c# log file truncation
Unless this is for a class assignment, why not use available open-source alternatives? Log4net allows you to roll between a specified number of log files.
…
0
votes
Recommend a C# Task Scheduling Library
I read about Quartz (http://quartznet.sourceforge.net/) in stackoverflow question ( …
0
votes
Can I handle a key up event even when grid view isn’t focused?
Have you tried to capture the event on the Form itself and then call the event handler for the data grid? You'll have to set KeyPreview to true for the form to get notified of keyboard events.
…
0
votes
Why is resharper making the following recommendation?
I suppose because T could be a non-reference type.
…
