从Visual C ++中的textBox输入中解析字符串

时间:2013-03-05 00:50:15

标签: visual-c++

这是我的问题,如何解析Visual C ++中textBox输入的字符串。我有这样的项目,我的投入需要一年。无论是否为闰年,该计划都会在标签上给出结果。我擅长C ++ / CLI,但Visual有点不同。请真的需要帮助。

以下是部分代码:

      String ^ year;
      year = textBox1->Text;

     // The code for parsing will be put here

      bool isLeapYear = ((year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0));

             if (isLeapYear)
             {
                label1->Text="Is a leap year";
             } else
                label1->Text="Is not a leap year";
             }

1 个答案:

答案 0 :(得分:0)

看一下.NET System.Convert类,从一种类型转换为另一种类型。