Click here to Skip to main content
15,900,906 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,


How to paas a null value in double variable e.g.


Double abc=null;
or Double abc="";


thanks

mohd wasif
Posted

Use Nullable Types if you want to assign NULL.

For example:
C#
int? i = 10;
double? d1 = 3.14;
bool? flag = null;
char? letter = 'a';


For more information on Nullable Types look into following links:
http://www.blackwasp.co.uk/CSharpNullableDataTypes.aspx[^]
http://www.codeguru.com/csharp/csharp/cs_syntax/operators/article.php/c10393/Using-Nullable-Types-in-C.htm[^]
http://msdn.microsoft.com/en-us/library/2cf62fcy.aspx[^]
 
Share this answer
 
Comments
Rahul Rajat Singh 27-Jun-12 6:43am    
good answer. +5.
Vani Kulkarni 27-Jun-12 6:47am    
Thanks Rahul!
double is a value type. value types dont really have null values. but you can have nullable double by using this syntax.

C#
Nullable<Double> d = null;


this will work same as a double. try using it. Just remember nullable types are immutable. but since you are using double it wont be a big problem for you.

P.S. the shorthand of what i just told you is like

C#
Double? d = null;


it means the same. just a syntactic sugar for the first one.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900