因为这学期的设计模式课需要进行面向对象的编程, 所以这里抽时间复习一下C#
命名空间的设计目的是提供一种让一组名称与其他名称分隔开的方式。
利用对象指针调用控件:
public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { MyClass.method1(textBox1); } } public class MyClass { static public void method1(System.Windows.Forms.TextBox t1) { t1.Text = "6666666666666666"; } }
数据库:
using System.Data;
using System.Data.SqlClient;
连接数据库:
string constr = "server=.;database=数据库名;integrated security=SSPI";
SqlConnection con = new SqlConnection();
con.ConnectionString = constr;
con.Open();
执行命令:
SqlCommand com = new SqlCommand();
com.Connection = con;
com.CommandType = CommandType.Text;
com.CommandText = "查询语句";
SqlDataReader dr = com.ExecuteReader();