摘要:
1、打开常用的Mysql管理工具 2、这里只是用Navicat举个例子 3、打开mysql数据库 修改密码为123456 update user set authentication_string=password('123456') where user='root' and host='loca 阅读全文
摘要:
今天带大家了解一下委托和事件 直接上代码 1、首先定义传输的数据类型,个人写例子的时候比较习惯Student或Person,你们随意 public class Student { public int Id { get; set; } public string Name { get; set; } 阅读全文