c#
小一嗯
这个作者很懒,什么都没留下…
展开
-
c# string类型和json之间的相互转换
// 从一个对象信息生成Json串 public static string ObjectToJson(object obj) { return JavaScriptConvert.SerializeObject(obj); } // 从一个Json串生成对象信息 public转载 2016-12-13 13:52:19 · 14484 阅读 · 0 评论 -
c#服务程序
1、新建项目=======》Visualc#.windows======>windows服务====》新建完成 (服务项目名称自取)2、打开Service1.cs======》右击添加安装程序======》=========》在查看S而vice1的代码======》=====>编写代码即可3、安装服务用.net framework工具INSTALLUTIL安装服务程序即翻译 2017-02-07 11:17:32 · 606 阅读 · 0 评论 -
C#连接OPC进行数据交互
步骤:引用OPCNETAPI.DLL && OPCNETAPI.COM.DLL 1.查询服务器2.连接服务器3.读取数据4.写入数据1.查询服务器:根据IP地址进行查询代码如下: //查询服务器 尝试 { Opc.Server [] servers = m_discove...转载 2018-06-29 11:27:57 · 17137 阅读 · 2 评论 -
c# txt文件的写入和读取
//写入 public static void FileStreamWirte(string FilePath, string FileContent) { try { string datetime = DateTime.Now.ToString("yyyyMMdd"); if...原创 2018-07-04 16:38:57 · 2881 阅读 · 0 评论 -
c# NPOI 的Excel读取代码
首页下NPOI /// <summary> ///将Excel转为DataTable /// </ summary> /// <param name =“filePath”>文件路径</ param> /// <returns> </ returns> ...原创 2018-08-09 11:37:43 · 260 阅读 · 0 评论 -
c# 贝塞尔计算
public class PointF { public float X { get; set; } public float Y { get; set; } } public Dictionary<string,string> Getpoints(string[] args) ...翻译 2018-08-09 11:39:06 · 1391 阅读 · 0 评论 -
c# 画热力图(一)
public class HeatMap { public float BrushStop { get; set; } public int Radius { get; set; } private struct HeatPoint { public Point point; ...原创 2018-08-09 11:42:06 · 7733 阅读 · 0 评论 -
c# 画热力图(二)
public void DrawHeat(string filePath, string sheetName) { string ParamPalettePath = @"D:\Ventuz5\01\Images\HeatMap/palette.png";//颜色板 DataTable dt = GetExcelTable(file...原创 2018-08-09 11:45:25 · 4070 阅读 · 1 评论