Why C# local variables must be initialized?

前端 未结 8 576
春和景丽
春和景丽 2020-12-03 22:28

I am reading MCTS Self Paced Training Kit (70-536) Edition 2 and in the 1st chapter we have the following.

How to Declare a Value Type Variable To

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-03 23:02

    You need to assign a value to b

    bool b = false;
    

    Until you assign it a value it is "unassigned"

提交回复
热议问题