using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 飞行棋Ver1._0{class Program{//如果元素的值是0 代表这是1个普通//1 幸运轮盘 ◎//2 ...
分类:
其他好文 时间:
2014-07-22 22:50:56
阅读次数:
249
来自讨论贴 http://www.itpub.net/thread-1877111-1-1.html准备数据表2014-07-20 01:38:10>create table tb_1 as select * from dba_objects where rownumcreate table tb_...
分类:
数据库 时间:
2014-07-22 22:50:33
阅读次数:
281
DataSet相当于一个小型数据库,通过它可以管理数据和关系1.将sql代码的返回结果填充到该类中,然后从该类中读取,显示。(类似于Sqldatareader类)using System;using System.Collections.Generic;using System.Linq;using...
分类:
Web程序 时间:
2014-07-21 10:03:06
阅读次数:
309
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;namespace ConsoleA...
分类:
其他好文 时间:
2014-07-21 08:07:57
阅读次数:
311
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using WindowsFormsApplication3.Jobs;using Win...
分类:
其他好文 时间:
2014-07-21 00:09:45
阅读次数:
267
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceConsoleApplication3
{
classProgram
{
staticvoidMain(string[]args)
{
int[][]arr=newint[3][];
arr[0]=newint[2]{1,2,};
arr[1]=newint[6]{3,4,..
分类:
其他好文 时间:
2014-07-20 23:12:43
阅读次数:
271
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
其他好文 时间:
2014-07-20 22:37:10
阅读次数:
180
主要使用数据适配器SqlDataAdapter类进行填充DataSet类代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Task...
分类:
Web程序 时间:
2014-07-20 22:19:11
阅读次数:
251
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2014-07-20 21:36:16
阅读次数:
186
Model:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data;namespace { ...
分类:
其他好文 时间:
2014-07-20 10:08:00
阅读次数:
406