Tagged Questions
The guard-clause tag has no wiki summary.
11
votes
18answers
2k views
How should I rewrite a very large compound if statement in C#?
In my C# code, I have an if statement that started innocently enough:
if((something == -1) && (somethingelse == -1) && (etc == -1)) {
// ...
}
It's growing. I think there must ...
7
votes
3answers
193 views
Auto-implemented properties with non null guard clause?
I do agree with Mark Seeman's notion that Automatic Properties are somewhat evil as they break encapsulation. However I do like the concise syntax, readability and convenience they bring.
I quote:
...
6
votes
2answers
244 views
vim + c++: insert a uuid in a guard clause
I'm trying to automate file comment headers. I'm stuck trying to figure out how to insert the result of the uuidgen command into my header using vim's autocmd.
Inside the header, the placeholder text ...
5
votes
3answers
943 views
Refactoring Guard Clauses
What approaches do people take (if any) in managing guard clause explosion in your classes? For example:
public void SomeMethod<T>(string var1, IEnumerable<T> items, int count)
{
if ...
2
votes
4answers
711 views
Guard Clause and Exception handling for the same condition
I ran across the following snippet of code. Names have been changed to protect the innocent:
public void RunProgram()
{
System.IO.FileInfo fInfo = new ...
1
vote
1answer
87 views
Guard Clause Not Firing
So I have been trying to get guard clauses to work with Caliburn.Micro and a bound textbox.
The View:
<TextBox x:Name="UserAccount_DisplayName" Margin="-10,-5,-10,8"/>
...