摘要:
接口:定义接口,里面包含方法,但没有方法具体实现的代码,然后在继承该接口的类里面要实现接口的所有方法的代码 public interface IBark { void bark() { } } public class Dog : IBark { public void bark() { Conso 阅读全文
摘要:
文本框TextBox1和TextBox2 内分别输入时间 用这个时间段来查询数据库 以下两种字符串都能用来查询数据库: 1、string sqlcom = "select * from 表名 where 时间 between '" + TextBox1.Text + "' and '" + Text 阅读全文