25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

27 satır
557 B

  1. using System;
  2. using System.Windows.Forms;
  3. using StuMgmLib.MyNameSpace;
  4. namespace StuMgmClient
  5. {
  6. public partial class StudentForm : Form
  7. {
  8. int m_token;
  9. int m_jobId;
  10. public StudentForm(short job_id, int token)
  11. {
  12. m_token = token;
  13. if (SystemCtrl.RefreshUserCourseInfo(job_id, token) != ErrCode.Success)
  14. throw new Exception("获取用户信息异常,请重新启动");
  15. InitializeComponent();
  16. }
  17. void GetStudentData()
  18. {
  19. }
  20. }
  21. }