Click here to Skip to main content
15,893,487 members
Home / Discussions / C#
   

C#

 
AnswerRe: Date Format Pin
PIEBALDconsult23-Dec-10 4:42
mvePIEBALDconsult23-Dec-10 4:42 
QuestionSmall confusion in Nullable Type Pin
Ravi Sant23-Dec-10 0:54
Ravi Sant23-Dec-10 0:54 
AnswerRe: Small confusion in Nullable Type PinPopular
harold aptroot23-Dec-10 1:01
harold aptroot23-Dec-10 1:01 
GeneralRe: Small confusion in Nullable Type Pin
Pete O'Hanlon23-Dec-10 2:40
mvePete O'Hanlon23-Dec-10 2:40 
GeneralRe: Small confusion in Nullable Type Pin
Ravi Sant23-Dec-10 4:30
Ravi Sant23-Dec-10 4:30 
AnswerRe: Small confusion in Nullable Type Pin
TweakBird23-Dec-10 1:02
TweakBird23-Dec-10 1:02 
AnswerRe: Small confusion in Nullable Type Pin
Hiren solanki23-Dec-10 1:18
Hiren solanki23-Dec-10 1:18 
AnswerRe: Small confusion in Nullable Type Pin
Laxman Auti24-Dec-10 20:39
Laxman Auti24-Dec-10 20:39 
RaviSant wrote:
Declaring
bool? b = true;


The intention of nullable types is to allow/accept null value. So when we declare "bool?" then, it is of type "Boolean" and can accept null value.

You can check if the variable has the value by using "HasValue" property of variable. if it is true then get the value of variable using "Value" property.
Knock out 't' from can't, you can if you think you can. Cool | :cool:

QuestionWhat is the code for Credit card no. validation in C#? Pin
Cnu5555522-Dec-10 22:27
Cnu5555522-Dec-10 22:27 
AnswerRe: What is the code for Credit card no. validation in C#? PinPopular
ScottM122-Dec-10 22:31
ScottM122-Dec-10 22:31 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Pete O'Hanlon22-Dec-10 22:48
mvePete O'Hanlon22-Dec-10 22:48 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 22:51
mveOriginalGriff22-Dec-10 22:51 
AnswerRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 22:50
mveOriginalGriff22-Dec-10 22:50 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
ScottM122-Dec-10 23:02
ScottM122-Dec-10 23:02 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 23:05
mveOriginalGriff22-Dec-10 23:05 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Pete O'Hanlon22-Dec-10 23:22
mvePete O'Hanlon22-Dec-10 23:22 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
OriginalGriff22-Dec-10 23:57
mveOriginalGriff22-Dec-10 23:57 
AnswerMy Vote of 1 Pin
Keith Barrow23-Dec-10 1:05
professionalKeith Barrow23-Dec-10 1:05 
GeneralRe: My Vote of 1 Pin
Pete O'Hanlon23-Dec-10 1:12
mvePete O'Hanlon23-Dec-10 1:12 
GeneralRe: My Vote of 1 Pin
Keith Barrow23-Dec-10 1:34
professionalKeith Barrow23-Dec-10 1:34 
GeneralRe: My Vote of 1 Pin
Pete O'Hanlon23-Dec-10 1:50
mvePete O'Hanlon23-Dec-10 1:50 
AnswerRe: What is the code for Credit card no. validation in C#? Pin
PIEBALDconsult23-Dec-10 4:45
mvePIEBALDconsult23-Dec-10 4:45 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Cnu5555529-Dec-10 17:55
Cnu5555529-Dec-10 17:55 
AnswerRe: What is the code for Credit card no. validation in C#? Pin
jschell23-Dec-10 7:05
jschell23-Dec-10 7:05 
GeneralRe: What is the code for Credit card no. validation in C#? Pin
Cnu5555529-Dec-10 17:49
Cnu5555529-Dec-10 17:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.