Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
825 views
in Technique[技术] by (71.8m points)

c# - Local variable 'mydate' might not be initialized before accessing

In my code i initilized Datetime like this

 DateTime myDate;

But when i try to access it then i got this error.

Local variable 'myDate' might not be initialized before accessing

Here i initialized my date know ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You declared it, but you didn't give it a value; you can't read a local variable until it is "definitely assigned". For a simple example:

DateTime myDate = DateTime.UtcNow; // is assigned

You don't have to give it a value right away... you can give it a value any time before you try to read it, including any branching etc that leaves no ambiguity that it has a value, for example:

DateTime myDate;
//....
if(condition) {
    myDate = DateTime.UtcNow;
} else {
    myDate = GetDateFromSomewhereElse();
}
Console.WriteLine(myDate);

For contrast, fields (class variables) are automatically initialized to their all-zero value, and are treated as "definitely assigned" from the object's creation.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...