-
ClipsNet
MommoSoft公司的CLIPS程序集以及例子,可以用于C#和CLIPS的混合编程(CLIPS assembly from MommoSoft, as well as examples, can be used in C# and a mixture of CLIPS programming)
- 2020-12-01 19:29:26下载
- 积分:1
-
Weather-Data
气象数据测试,用于检测气象数据的记录和测试,及其自动话的实现(Weather Date Test)
- 2013-02-22 11:42:49下载
- 积分:1
-
vc实现udp传输实例,属于客户端。
vc实现udp传输实例,属于客户端。-vc achieve udp transmission example, belong to the client.
- 2022-03-25 23:02:07下载
- 积分:1
-
练习3
说明: 适用于初学者的web网页设计编程的第三部分。(The third part of web page design and programming for beginners.)
- 2020-06-15 23:40:01下载
- 积分:1
-
Exceptional-cPP
Exceptional c++中文版,指导c++程序员写出高效整洁的代码(Exceptional c++ Chinese version of the guide c++ programmers to write efficient code clean)
- 2013-08-19 16:24:48下载
- 积分:1
-
vbcjdd
vb的经典插件对于初学者来说很方便的插件可以屏蔽垃圾代码(vb classic plugin for beginners is very convenient plug-shielding can refuse code)
- 2007-01-21 23:34:20下载
- 积分:1
-
swat model FORTRAN language
SWAT模型的源代码。分布式水文模型SWAT在水文中享有较高的盛誉,它能够综合反映一个地区的水文地质状况,以及水文气象状况,而其源代码更是研究SWAT的必备“神器”,学习了解SWAT的源代码不仅可以在最短的时间内学习到SWAT的“精要”,更能学习其Fortran语言,了解模型到代码的转换,更能学习到其模型的“实质”。(Source code of SWAT model. The distributed hydrological model SWAT enjoys a high reputation in the hydrology, it can reflect a regional hydrogeological condition, and the hydrological and meteorological condition, and its source code is an essential artifact of SWAT, learn SWAT source code can learn not only to SWAT in the shortest time. "The essence of" better learning Fortran language, understand the conversion model to code, can learn the essence of the model "".)
- 2021-05-12 18:30:02下载
- 积分:1
-
远程镜像测试端口,用于远程访问终端电脑,开发免费网络资源...
远程镜像测试端口,用于远程访问终端电脑,开发免费网络资源-Remote mirror test port for remote access to computer terminals, development of network resources for free
- 2022-05-30 18:05:13下载
- 积分:1
-
Windows Socket API 使用经验
Windows Socket API 使用经验-Windows Socket API experience
- 2023-08-14 03:45:03下载
- 积分:1
-
C#自动更新服务(本地服务安装)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Common.WinService;using Common.Log;using System.Threading;using Common.Net;using System.Text.RegularExpressions;namespace Collection.AutoRunner{ //获取学生信息 public class Service_Update_Data : IWindowsService { private ILogWriter _logWriter = null; private const string logCategory = "Services.Info"; private string logInfoSource = "Update_Data"; private const string logErrorCategory = "Services.Error"; private const string logErrorSource = "Update_Data_Error"; private bool BeStop = true; private System.Timers.Timer timer = null; public void Start(Common.Log.ILogWriter logWriter, string gameCode) { gameCode = gameCode.ToUpper(); logInfoSource = gameCode; _logWriter = logWriter; BeStop = false; StartRequestData(); } int stata = 0; private void StartRequestData() { try { #region 配置 //时间频率 var UpdateStudentSpan = ServiceHelper.GetInterval("UpdateData"); //更新学生开始时间 var studentbegintime = ServiceHelper.GetInterval("StudentBeginTime"); //更新学生结束时间 var studentendtime = ServiceHelper.GetInterval("StudentEndTime"); //是否更新学生基本信息:true为更新 false为不更新 var IsUpdateStudnet =Convert.ToBoolean(ServiceHelper.GetSystemConfig("IsUpdateStudnet")); #endregion timer = ServiceHelper.ExcuteByTimer(UpdateStudentSpan, () => { int timeHour = DateTime.Now.Hour; if (timeHour == 3) stata = 0; #region 更新学生基本信息 if (studentbegintime
- 2015-03-11下载
- 积分:1