上一页 1 ··· 9 10 11 12 13
摘要: 1.简介 C#中通常使用线程类Thread来进行线程的创建与调度,博主在本文中将分享多年C#开发中遇到的Thread使用陷阱。Thread调度其实官方文档已经说明很详细了。本文只简单说明,不做深入探讨。如下代码展示了一个线程的创建与启动 static void Main(string[] args) 阅读全文
posted @ 2021-05-08 11:05 funiyi816 阅读(416) 评论(0) 推荐(0) 编辑
摘要: c# Thread.Abort()和Thread.ResetAbort()的使用Thread类的Abort()方法用于终止正在运行的线程(.net core中Abort()方法虽然存在,但是调用它会引发PlatformNotSupportedException的异常提示)。它可以强行终止线程,而不管 阅读全文
posted @ 2021-05-08 10:26 funiyi816 阅读(504) 评论(0) 推荐(0) 编辑
摘要: Prepare 本文将使用一个NuGet公开的组件来实现曲线的显示,包含了多种显示的模式和配置来满足各种不同的应用场景,方便大家进行快速的开发系统。 在Visual Studio 中的NuGet管理器中可以下载安装,也可以直接在NuGet控制台输入下面的指令安装: 1 Install-Package 阅读全文
posted @ 2021-05-07 08:32 funiyi816 阅读(1138) 评论(0) 推荐(0) 编辑
摘要: DataTable.Compute()用法 一、DataTable.Compute()方法說明如下作用: 计算用来传递筛选条件的当前行上的给定表达式。 格式為: Object Compute (string expression,string filter)参数: expression:要计算的表达 阅读全文
posted @ 2021-04-28 19:23 funiyi816 阅读(2165) 评论(0) 推荐(0) 编辑
摘要: 简易计算器案例 计算类封装 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCalculat 阅读全文
posted @ 2021-04-11 11:22 funiyi816 阅读(71) 评论(0) 推荐(0) 编辑
摘要: XML文件操作 实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLDemo { class Student { public string St 阅读全文
posted @ 2021-04-11 11:07 funiyi816 阅读(73) 评论(0) 推荐(0) 编辑
摘要: ini文件读写 添加帮组类 using System; using System.Text; using System.IO; using System.Runtime.InteropServices; namespace IniHelperDemo { public class IniConfig 阅读全文
posted @ 2021-04-11 11:00 funiyi816 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 对象存取和序列化对象存取 //实体类对象 using System; using System.Collections.Generic; using System.Text; namespace TextFile { [Serializable] class Student { public str 阅读全文
posted @ 2021-04-11 10:55 funiyi816 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 文本文件操作 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using 阅读全文
posted @ 2021-04-11 10:47 funiyi816 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13