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#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
}
}