You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
547 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ClientTest
{
/*
*Common
*
*2010-10-30
*
*/
class Common
{
//间隔时间倍数
public static int MULTIPLE = 2;
public static FrmMain frmMain = null;
public static ConfigReader configReader = new ConfigReader();
public static Button btRefresh = null;
}
}