Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
なぜこれがコンパイルされるのですか?
If Months > 1 Then Label.Text = Months + " Months" Else : Months = 1 Label.Text = Months + " Month" End If
Visual Studio 2010 を使用しています。
:行区切りです。これは改行に相当します:
:
If Months > 1 Then Label.Text = Months + " Months" Else Months = 1 Label.Text = Months + " Month" End If
そして、これが私が見つけた最高のドキュメントです。ごめん。