摘要:
/// <summary> /// 保存XML文件 /// </summary> /// <returns></returns> public bool SaveXml() { //删除原配置文件 if (System.IO.File.Exists(getCallRecodXMLPath())) { 阅读全文
摘要:
C++结构体:struct DATAAREA { // 报警协议数据区结构 char szAlarmNo[20]; // 报警编号(必填) char szUserNo[10]; // 用户编号(必填) char szUserName[100]; // 用户名称(必填) char szUserAddr 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web.Script.Serialization; namespace JsonTest{ class Pro 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions; namespace RegexDemo{ class Pro 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Resources;using System.Reflection; namespace ResourceTe 阅读全文
摘要:
引言:同样的操作在单线程中可以运行,在多线程的环境中很可能碰见资源抢占的情况,而.NET为我们封装了处理这种情况的方法Invoke。具体应用如下, Example1: /// <summary> /// 将窗体显示在指定的Panel上 /// </summary> /// <param name=" 阅读全文