文章分类 -  C#

摘要:https://learn.microsoft.com/zh-cn/dotnet/api/system.threading.mutex?view=net-8.0 阅读全文
posted @ 2025-04-24 11:26 微笑的''80 阅读(4) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/loda7023link/p/12674738.html 阅读全文
posted @ 2024-11-09 23:37 微笑的''80 阅读(7) 评论(0) 推荐(0)
摘要:查看代码 using NationalInstruments.TestStand.Interop.API; using NationalInstruments.TestStand.Interop.UI; using System; using System.CodeDom.Compiler; usi 阅读全文
posted @ 2023-12-20 20:43 微笑的''80 阅读(223) 评论(0) 推荐(0)
摘要:https://www.ni.com/en/support/documentation/supplemental/14/working-with-the-teststand-simple-user-interface c--net.html 阅读全文
posted @ 2023-12-20 16:57 微笑的''80 阅读(10) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/CHENFEIYANG2009/article/details/5776239 阅读全文
posted @ 2018-07-02 08:46 微笑的''80 阅读(73) 评论(0) 推荐(0)
摘要:控制台测试: 阅读全文
posted @ 2018-03-21 12:00 微笑的''80 阅读(222) 评论(0) 推荐(0)
摘要:http://www.jb51.net/softs/583808.html 阅读全文
posted @ 2017-11-15 15:24 微笑的''80 阅读(92) 评论(0) 推荐(0)
摘要:https://www.mathdotnet.com/ 阅读全文
posted @ 2017-10-20 08:12 微笑的''80 阅读(238) 评论(0) 推荐(0)
摘要:https://www.nuget.org/packages/LightningChartUltimateWPF/ 阅读全文
posted @ 2017-10-19 08:17 微笑的''80 阅读(75) 评论(0) 推荐(0)
摘要:using OpcUALibrary.Client; 阅读全文
posted @ 2017-10-16 16:12 微笑的''80 阅读(143) 评论(0) 推荐(0)
摘要:var myModel = new PlotModel { Title = "Example 1" }; myModel.Series.Add(new FunctionSeries(Math.Cos, 0, 10, 0.1, "cos(x)")); this.plot.Model = myModel; ... 阅读全文
posted @ 2017-10-16 15:56 微笑的''80 阅读(932) 评论(0) 推荐(0)
摘要:http://www.ni.com/academic/students/learnlabview/zhs/hardware.htm DAQ控制步进电机 https://v.qq.com/x/page/i0188e6c81q.html 阅读全文
posted @ 2017-09-17 18:18 微笑的''80 阅读(153) 评论(0) 推荐(0)
摘要:最近做一个小项目,项目中有一个定时服务,需要向对方定时发送数据,时间间隔是1.5s,然后就想到了用C#的Timer类,我们知道Timer 确实非常好用,因为里面有非常人性化的start和stop功能,在Timer里面还有一个Interval,就是用来设置时间间隔,然后时间间隔到了就会触 发Elaps 阅读全文
posted @ 2017-08-30 19:49 微笑的''80 阅读(294) 评论(0) 推荐(0)
摘要:https://www.woutware.com https://www.ab4d.com/Products.aspx 阅读全文
posted @ 2017-08-21 21:57 微笑的''80 阅读(90) 评论(0) 推荐(0)
摘要:http://www.aforgenet.com/framework/ 阅读全文
posted @ 2017-08-14 13:36 微笑的''80 阅读(309) 评论(0) 推荐(0)
摘要:http://blog.csdn.net/evankaka/article/details/44456661 阅读全文
posted @ 2017-08-11 17:40 微笑的''80 阅读(99) 评论(0) 推荐(0)
摘要:https://blog.gkarch.com/threading/part2.html#blocking-versus-spinning 阅读全文
posted @ 2017-08-08 22:26 微笑的''80 阅读(63) 评论(0) 推荐(0)
摘要:https://bitbucket.org/horizongir/opencv.net/src 阅读全文
posted @ 2017-07-27 15:58 微笑的''80 阅读(101) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace DirLibs { class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2017-07-14 08:52 微笑的''80 阅读(95) 评论(0) 推荐(0)
摘要:/// /// 请求网易云音乐接口 /// /// 要请求的接口类型 /// 要请求的接口类型的对象 /// 请求结果(JSON) public static string Request(T config) where T : RequestData, new() { // 请求URL string requestURL = config.Url; // 将数... 阅读全文
posted @ 2017-02-21 08:25 微笑的''80 阅读(537) 评论(0) 推荐(0)