c#
那一抹嫣红
这个作者很懒,什么都没留下…
展开
-
c#通过onvif协议实现视频查看,截图录像ptz控制
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Diagnostics;using System.Runtime.InteropServices;using S原创 2021-05-26 11:15:54 · 5730 阅读 · 8 评论 -
c#读txt文件判断编码兼容不带bom的utf-8
网上找了一堆文章兼容性比较差,自己改了改static string ReadAllFormatText(string filename) { byte[] bs = File.ReadAllBytes(filename); int len = bs.Length; FileStream fs = new FileStream(filename, FileMode.Open, FileAccess.Read); ...原创 2020-07-09 10:36:10 · 871 阅读 · 0 评论