摘要:
Create Table Article ( Id Int Identity(1,1) Not Null, Title Varchar(50) Not Null Constraint uq_ArticleTitle Unique, Keywords Varchar(50) Not Null, Abs 阅读全文
摘要:
using System.Runtime.InteropServices; using System.Windows.Forms; namespace WindowsFormsApp { public partial class Form1 : Form { public Form1() { Ini 阅读全文
摘要:
win32 API using System; //using System.Drawing; using System.Runtime.InteropServices; using System.Text; using System.Windows.Forms; namespace Transfe 阅读全文
摘要:
原文链接:https://www.cnblogs.com/juanheqiao/p/14204790.html 先创建个类: public class ResFileStream: FileStream { public ResFileStream(string path, FileMode mod 阅读全文
摘要:
original:https://www.npmjs.com/package/js-base64Encodelet latin = 'dankogai'; let utf8 = '小飼弾' let u8s = new Uint8Array([100,97,110,107,111,103,97,105 阅读全文
摘要:
The definition of these terms is quite ambiguous. You will find different definitions at different places.Entity: An entity represents a single instan 阅读全文
摘要:
需求:需要将Employee转换成DTO public class Employee { public int Age { get; set; } public int EmployeeNum { get; set; } public string Name { get; set; } public 阅读全文