摘要:
using System; using System.Threading.Tasks; using System.Windows.Forms; public partial class MainForm : Form { public MainForm() { InitializeComponent 阅读全文
摘要:
1.注意使用using和FileShare文件共享选项 public static class FileHelper { public static void WriteAllTextWithShare(string path, string content) { using (var sw = n 阅读全文
摘要:
REST(Representational State Transfer)是一种用于构建网络应用程序的架构风格,特别适用于 Web API。RESTful Web API 是基于 REST 原则设计的 API,允许客户端与服务器之间进行交互。以下是 REST Web API 的一些关键概念和特点: 阅读全文