The null-check tag has no wiki summary.
10
votes
2answers
150 views
Comparing a generic against null that could be a value or reference type?
public void DoFoo<T>(T foo) where T : ISomeInterface<T>
{
//possible compare of value type with 'null'.
if (foo == null) throw new ArgumentNullException("foo");
}
I'm purposely ...
8
votes
2answers
103 views
Null checking extension method
So, I'm doing a lot of database work in an application - and there are several possible return values of my caching system. It can return null, it can return a default (type) or it can return an ...
2
votes
1answer
46 views
How to check a value in a SQLite column is NULL or not with C API?
I'm using SQLite with C API.
On C API, I can check the result value of a column with sqlite3_column_* functions. the problem is there is no function for the case of the value is NULL. Of course, I can ...
2
votes
1answer
80 views
CA1062 (Code Analysis) disagrees with ReSharper — Who wins?
protected override void OnTextInput(TextCompositionEventArgs e)
{
e.Handled = true;
DoSomething(e.Text);
}
If I check for null, CA is happy, but ReSharper says that the null check will ...
2
votes
2answers
224 views
C#: How to perform a null-check on a dynamic object
How do I perform a null-check on a dynamic object?
Pseudo code:
public void Main() {
dynamic dynamicObject = 33;
if(true) { // Arbitrary logic
dynamicObject = null;
}
...