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

Categories


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

1 Answer

Assuming you're using visual studio; pressing CTRL+E, D will re-format your document to the configured conventions, which should make the fundamental problem obvious - the braces are indeed unbalanced:

enter image description here

It looks like you are missing 2 } braces, to end the class and the namespace scopes. However, it could also be that there are oddities in the code logic itself, re braces.

Note: the reformat option is also available via the menus - Edit -> Advanced -> Format Document:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...