用户类,保存登录信息:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceGroupProject{///<summary>///此类专门用来保存登录用户的信息///方便使用之时调用///</summar
用户类,保存登录信息:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceGroupProject{///<summary>///此类专门用来保存登录用户的信息///方便使用之时调用///</summar
1 using Newtonsoft.Json; 2 using Newtonsoft.Json.Linq; 3 4 static void Main(string[] args) 5 { 6 TestJsonValid(); 7 Console.ReadLine(); 8 } 9 10 stati ...
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;usi ...
消除代码中的坏味道,编写高质量代码 Intro# 想要写出较好的代码,保证代码的高质量需要时刻警惕代码中的坏味道,今天分享一下,我觉得平时写的代码中可能会出现的坏味道代码的一些示例 常见的坏味道代码# Bug Logically(null check etc.) 严格的来说,这可能是一个 BUG 级 ...
分类:
其他好文 时间:
2020-09-24 00:08:21
阅读次数:
51
将特性插入,就是插入一个标志?然后再类typeof中存在一(字段?方法?)对多(特性) 当调用特性的方法的时候就是调用想对应类的 方法; using System; using System.Collections.Generic; using System.Linq; using System.T ...
分类:
其他好文 时间:
2020-09-18 01:20:53
阅读次数:
25
前期准备:安装微软Excel,需要调用excel类库,Microsoft.Excel XXX Object Library 1 sing System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.T ...
测试窗体为: 直接上代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using ...
分类:
数据库 时间:
2020-09-17 12:31:54
阅读次数:
43
项目中,需要实现字体相关操作,收集了一些相关参数,可以引用的。 using System.Collections.Generic; using System.Drawing; using System.Drawing.Text; using System.Linq; using System.Net ...
分类:
其他好文 时间:
2020-09-15 21:20:52
阅读次数:
53
一:背景昨天在看C#函数式编程这本书的时候,有一处让我干着急,需求是这样:给多行文字加上数字列表项。针对这个需求你会如何快捷高效的给每个项目加上数字编号呢?我看书中是这样实现的,如下代码publicclassProgram{publicstaticvoidMain(string[]args){varlist=newList<string>(){"cnblogs","csdn","zhi
分类:
其他好文 时间:
2020-09-10 22:53:49
阅读次数:
38