Tagged Questions
The nullable tag is for issues relating to nullable members or types.
99
votes
9answers
7k views
Performance surprise with “as” and nullable types
I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write:
object o = ...;
int? x = o as int?;
if ...
61
votes
8answers
2k views
Why does >= return false when == returns true for null values?
I have two variables of type int? (or Nullable<int> if you will). I wanted to do a greater-than-or-equal (>=) comparison on the two variables but as it turns out, this returns false if both ...
47
votes
16answers
19k views
How to parse a string into a nullable int in C# (.NET 3.5)
I'm wanting to parse a string into a nullable int in C#. ie. I want to get back either the int value of the string or null if it can't be parsed.
I was kind of hoping that this would work
int? val ...
33
votes
4answers
21k views
C# nullable string error
private string? typeOfContract
{
get { return (string?)ViewState["typeOfContract"]; }
set { ViewState["typeOfContract"] = value; }
}
Later in the code I use it like this:
...
30
votes
3answers
5k views
Which is preferred: Nullable<>.HasValue or Nullable<> == null?
I always used (a)Nullable<>.HasValue because I liked the semantics. However, recently I was working on someone else's existing code base where they used (b)Nullable<> == null exclusively ...
29
votes
7answers
13k views
How to check if an object is nullable?
How do I check if a given object is nullable in other words how to implement the following method...
bool IsNullableValueType(object o)
{
...
}
EDIT: I am looking for nullable value types. I ...
28
votes
9answers
4k views
Nullable types and the ternary operator. Why won't this work?
Just came across a weird error:
private bool GetBoolValue()
{
//do some logic and return true or false
}
Then, in another method, something like this:
int? x = GetBoolValue() ? 10 : null;
...
26
votes
7answers
902 views
Are nullable types reference types?
when I declare an int as nullable
int? i=null;
Is i here become a reference type?
26
votes
5answers
14k views
C# ADO.NET: nulls and DbNull — is there more efficient syntax?
I've got a DateTime? that I'm trying to insert into a field using a DbParameter. I'm creating the parameter like so:
DbParameter datePrm = updateStmt.CreateParameter();
datePrm.ParameterName = ...
22
votes
8answers
10k views
Linq query with nullable sum problem
from i in Db.Items
select new VotedItem
{
ItemId = i.ItemId,
Points = (from v in Db.Votes
where b.ItemId == v.ItemId
select v.Points).Sum()
}
I got this query, ...
22
votes
15answers
912 views
How liberal should I be with NOT NULL columns?
I'm designing a database schema, and I'm wondering what criteria I should use for deciding whether each column should be nullable or not.
Should I mark as NOT NULL only those columns that absolutely ...
21
votes
7answers
22k views
C#: Is there any difference between bool? and Nullable<bool>?
In C# are the nullable primitive types (i.e. bool?) just aliases for their corresponding Nullable<T> type or is there a difference between the two?
20
votes
6answers
2k views
Why do nullable bools not allow if(nullable) but do allow if(nullable == true)?
This code compiles:
static void Main(string[] args)
{
bool? fred = true;
if (fred == true)
{
Console.WriteLine("fred is true");
}
else if ...
20
votes
3answers
3k views
Why is this code invalid in C#?
The following code will not compile:
string foo = "bar";
Object o = foo == null ? DBNull.Value : foo;
I get: Error 1 Type of conditional expression cannot be determined because there is no implicit ...
19
votes
6answers
3k views
C# newbie: what's the difference between “bool” and “bool?”?
I'm starting with C#, and encountered something that puzzles me. I use the "bool" type for variables as I was used to in C++, and I try to put the values of functions or properties I expect to be ...
18
votes
1answer
726 views
C# 4: Dynamic and Nullable<>
So I've got some code that passes around this anonymous object between methods:
var promo = new
{
Text = promo.Value,
StartDate = (startDate == null) ?
new Nullable<DateTime>() ...
18
votes
2answers
440 views
What are lifted operators?
I was looking at this article and am struggling to follow the VB.NET example that explains lifted operators. There doesn't seem to be an equivalent C# example or tutorial. I don't have much experience ...
18
votes
10answers
3k views
Get null == null in SQL
I wish to search a database table on a nullable column. Sometimes the value I'm search for is itself NULL. Since Null is equal to nothing, even NULL, saying
where MYCOLUMN=SEARCHVALUE
will fail. ...
17
votes
4answers
550 views
Nullable ToString()
I see everywhere constructions like:
int? myVar = null;
string test = myVar.HasValue ? myVar.Value.ToString() : string.Empty;
Why not use simply:
string test = myVar.ToString();
Isn't that ...
17
votes
5answers
14k views
nullable object must have a value
There is paradox in the exception description:
Nullable object must have a value (?!)
This is the problem:
I have a DateTimeExtended class,
that has
{
DateTime? MyDataTime;
int? otherdata;
}
...
17
votes
3answers
8k views
c# why cant a nullable int be assigned null as a value
Can someone explain to me why a nullable int cant be assigned the value of null e.g
int? accom = (accomStr == "noval" ? null : Convert.ToInt32(accomStr));
What's wrong with that code?
Thanks
16
votes
4answers
7k views
Compare nullable types in Linq to Sql
I have a Category entity which has a Nullable ParentId field. When the method below is executing and the categoryId is null, the result seems null however there are categories which has null ParentId ...
16
votes
6answers
20k views
How do I use DateTime.TryParse with a Nullable<DateTime>?
I want to use the DateTime.TryParse method to get the datetime value of a string into a Nullable. But when I try this:
DateTime? d;
bool success = DateTime.TryParse("some date text", out ...
15
votes
5answers
9k views
What does “DateTime?” mean in C#?
I am reading a .Net book, and in one of the code examples there is a class definition with this field:
private DateTime? startdate
What does "DateTime?" mean?
14
votes
6answers
251 views
Why can the as operator be used with Nullable<T>?
According to the documentation of the as operator, as "is used to perform certain types of conversions between compatible reference types". Since Nullable is actually a value type, I would expect as ...
14
votes
4answers
258 views
Why GetType returns System.Int32 instead of Nullable<Int32>?
Why is the output of this snippet System.Int32 instead of Nullable?
int? x = 5;
Console.WriteLine(x.GetType());
14
votes
5answers
402 views
Why am I allowed to compare a non-nullable type with null? [closed]
Possible Duplicate:
C# okay with comparing value types to null
If I try to assign null to a non-nullable type in C#:
System.DateTime time = null;
I'll get a compile-time error:
error ...
14
votes
4answers
1k views
Checking if Type instance is a nullable enum in C#
How do i check if a Type is a nullable enum in C#
something like
Type t = GetMyType();
bool isEnum = t.IsEnum; //Type member
bool isNullableEnum = t.IsNullableEnum(); How to implement this extension ...
14
votes
10answers
824 views
When should one use nullable types in c#?
I have been repeatedly asked these question in many interviews.... But still can't able to explain them with a simple example...
What is nullable types in c#?When should one use nullable types in ...
14
votes
2answers
1k views
Nullable type is not a nullable type?
I was doing some testing with nullable types, and it didn't work quite as I expected:
int? testInt = 0;
Type nullableType = typeof(int?);
Assert.AreEqual(nullableType, testInt.GetType()); // not the ...
14
votes
3answers
6k views
.NET - Convert Generic Collection to DataTable
I am trying to convert a generic collection (List) to a DataTable. I found the following code to help me do this:
// Sorry about indentation
public class CollectionHelper
{
private CollectionHelper()
...
14
votes
4answers
3k views
Nullable type issue with ?: Conditional Operator
Could someone explain why this works in C#.NET 2.0:
Nullable<DateTime> foo;
if (true)
foo = null;
else
foo = new DateTime(0);
...but this doesn't:
Nullable<DateTime> foo;
foo ...
13
votes
6answers
580 views
What is 'long?' data type?
I am going over some code written by another developer and not sure what 'long?' means:
protected string AccountToLogin(long? id)
{
string loginName = "";
if (id.HasValue)
...
13
votes
7answers
728 views
C# - Basic question: What is '?'?
I'm wondering what ? means in C# ?
I'm seeing things like: DateTime? or int?. I suppose this is specific to C# 4.0?
I can't look for it in Google because I don't know the name of this thing.
The ...
13
votes
5answers
3k views
How can I fix this up to do generic conversion to Nullable<T>?
I currently use this handy conversion extension method to do conversions between types:
public static T To<T>(this IConvertible obj)
{
return (T)Convert.ChangeType(obj, ...
12
votes
4answers
939 views
Where in memory are nullable types stored?
This is maybe a follow up to question about nullable types.
Where exactly are nullable value types (int?...) stored in memory? First I thought it's clear enough, as Nullable<T> is struct and ...
12
votes
4answers
2k views
Conditional operator assignment with Nullable<value> types?
EmployeeNumber =
string.IsNullOrEmpty(employeeNumberTextBox.Text)
? null
: Convert.ToInt32(employeeNumberTextBox.Text),
I often find myself wanting to do things like this ...
11
votes
3answers
443 views
Why Nullable<T> is a struct?
I was wondering why Nullable<T> is a value type, if it is designed to mimic the behavior of reference types? I understand things like GC pressure, but I don't feel convinced - if we want to have ...
11
votes
5answers
1k views
Ternary operator VB vs C#: why resolves to integer and not integer?
I just shoot myself in the foot and would like to know whether there were actual reasons to make this situation possible.
And anyway, this question can stay for the convenience of the future foot ...
11
votes
3answers
222 views
are C# int? and bool?s always boxed when hasvalue = true?
This MSDN reference seems to indicate that when an int? (or any Nullable<T>) has a value, it's always boxed (and hence a much less efficient store of data, memory-wise than an int). Is that the ...
11
votes
3answers
3k views
Set value to null in WPF binding
please take a look at the following line
<TextBox Text="{Binding Price}"/>
This Price property from above is a Decimal? (Nullable decimal).
I want that if user deletes the content of the ...
11
votes
7answers
2k views
Coding practices for C# Nullable type
I have never used nullable types in my C# code. Now I have decided to change my coding practice by introducing nullable types in my code.
What are the major changes in the coding practices should be ...
11
votes
5answers
2k views
Boxing / Unboxing Nullable Types - Why this implementation?
Extract from CLR via C# on Boxing / Unboxing value types ...
On Boxing: If the nullable instance is not null, the CLR takes the value out of the nullable instance and boxes it. In other words a ...
11
votes
5answers
721 views
What is the reason not all value types are nullable?
Is there any penalty, such that you should only set them as nullable when you really need it?
Thanks
10
votes
3answers
252 views
Is there any difference between myNullableLong.HasValue and myNullableLong != null?
When I have a nullable long, for example, is there any difference between
myNullableLong.HasValue
and
myNullableLong != null
... or is it just 'syntactic sugar'?
10
votes
4answers
607 views
Can't add null to list of nullables [closed]
Possible Duplicate:
Adding null to a List<bool?> cast as an IList throwing an exception.
List<int?> listONullables = new List<int?>();
IList degenericed = listONullables;
...
10
votes
8answers
352 views
Gotchas when making use of Nullable<T> in C# 4
I've just started writing on a component where I found it might be useful to declare some of the properties nullable, instead of letting them resort to default values. However, I realized that I've ...
10
votes
7answers
370 views
Variable type ending with ?
What does ? mean:
public bool? Verbose { get; set; }
When applied to string?, there is an error:
The type 'string' must be a non-nullable value type in order to use it as parameter 'T' in the ...
10
votes
8answers
5k views
How can I format a nullable DateTime with ToString()?
How can I convert the nullable DateTime dt2 to a formatted string?
DateTime dt = DateTime.Now;
Console.WriteLine(dt.ToString("yyyy-MM-dd hh:mm:ss")); //works
DateTime? dt2 = DateTime.Now;
...
10
votes
3answers
2k views
Why is a Nullable<T> not a valid Custom Attribute Parameter when T is?
If I have an enum like this
public enum Hungry
{
Somewhat,
Very,
CouldEatMySocks
}
and a custom attribute like this
public class HungerAttribute : Attribute
{
public Hungry ...