C#的题目 高手进

1,使用SqlConnection,SqlCommand,SqlDataReader和SqlParameter,写一个方法从数据库中读数据。2,定义一个泛型集合类。要求:... 1, 使用SqlConnection,SqlCommand,SqlDataReader和SqlParameter,写一个方法从数据库中读数据。
2, 定义一个泛型集合类。要求:实现Ienumerable<T>接口,T是值类型,并T取2个类型分别测试。
3,在Graphics绘图面中心绘制一个1/4大小的红色矩形,在矩形内中心位置填充一个适当大小的蓝色椭圆,在椭圆内中心位置写上红色文字“我的绘图画”,并在矩形的4个角各绘制一个蓝色小圆。
展开
 我来答
jnc911
2009-11-30 · TA获得超过192个赞
知道小有建树答主
回答量:160
采纳率:0%
帮助的人:0
展开全部
我靠!你这是什么问题 跳来跳去的什么都有
1.
public static SqlDataReader GetReader(string sql, SqlParameter param)
{
SqlConnection connection = new SqlConnection(connectionString);
SqlCommand cmd = new SqlCommand(sql, connection);
cmd.Parameters.Add(param);
try
{
connection.Open();
SqlDataReader myReader = cmd.ExecuteReader(CommandBehavior.CloseConnection);
return myReader;
}
catch (System.Data.SqlClient.SqlException e)
{
throw new Exception(e.Message);
}
}
2.
List<int> list = new List<int>();
list.Add(1);
list.Add(2);
List<float> list = new List<float>();
list.Add(1.0f);
list.Add(2.0f);
3.
Graphics g = this.CreateGraphics();
g.FillRectangle(Brushes.Red,new Rectangle(this.Width / 2 - this.Width / 8,this.Height / 2 - this. Height / 8,this.Width / 4, this.Height / 4));

g.FillEllipse(Brushes.Blue,this.Width / 2 - this.Width / 8,this.Height / 2 - this. Height / 8,this.Width / 4, this.Height / 4));
int length = g.MeasureString("我的绘图画",new Font("宋体",12));
g.DrawString("我的绘图画",new Font("宋体",12),Brushes.Red,this.Width / 2 - length / 2,this.Height / 2);
int ellipseR;
g.DrawEllipse(Pens.Blue,this.Width / 2 - this.Width / 8 - ellipseR/ 2,this.Height / 2 - this. Height / 8 - ellipseR/ 2,ellipseR,ellipseR);
g.DrawEllipse(Pens.Blue,this.Width / 2 - this.Width / 8 + this.width / 4 + ellipseR / 2,this.Height / 2 - this. Height / 8 + ellipseR / 2, ellipseR, ellipseR);
g.DrawEllipse(Pens.Blue,this.Width / 2 - this.Width / 8 - ellipseR/ 2,this.Height / 2 - this. Height / 8 + this.Height / 4 - ellipseR/ 2,ellipseR,ellipseR);
g.DrawEllipse(this.Width / 2 - this.Width / 8 + this.width / 4 + ellipseR / 2,this.Height / 2 - this. Height / 8 + this.Height/ 4 + ellipseR / 2, ellipseR, ellipseR);

累死我了= =!
ChenJianCHE
2009-12-01 · TA获得超过201个赞
知道小有建树答主
回答量:245
采纳率:100%
帮助的人:235万
展开全部
楼上的牛~佩服!楼主给分吧……
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友1a722be
2009-12-01
知道答主
回答量:66
采纳率:0%
帮助的人:0
展开全部
...........你这是替人做作业么!!!!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友cf38862
2009-12-01 · 超过77用户采纳过TA的回答
知道小有建树答主
回答量:205
采纳率:0%
帮助的人:140万
展开全部
哎,类似这样的问题偶都不知道要不要回答、、、
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
落月Prc
2009-12-01 · TA获得超过2789个赞
知道大有可为答主
回答量:2011
采纳率:100%
帮助的人:2427万
展开全部
顶1楼,牛肉人~~
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Frez520
2009-12-04
知道答主
回答量:14
采纳率:0%
帮助的人:10万
展开全部
你是哪个班的?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式