상속: JanusBaseForm
예제 #1
0
        private static bool CheckEnvironment()
        {
            if (Environment.Version < new Version(2, 0, 50727, 1433))
            {
                using (var frm = new SP1RequiredForm())
                    frm.ShowDialog();
                return(false);
            }

            return(true);
        }
예제 #2
0
파일: Janus.cs 프로젝트: rsdn/janus
		private static bool CheckEnvironment()
		{
			if (Environment.Version < new Version(2, 0, 50727, 1433))
			{
				using (var frm = new SP1RequiredForm())
					frm.ShowDialog();
				return false;
			}

			return true;
		}