为了方便调用暂停、继续的方法。要将speech的功能写成一个类。直接附上代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Speech.Synthesis; ...
分类:
其他好文 时间:
2014-07-09 18:44:34
阅读次数:
1183
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
1 public class Product 2 { 3 public string Name { get;set;} 4 public int Code { get; set; } 5 } 6 ...
分类:
其他好文 时间:
2014-07-09 17:39:41
阅读次数:
182
一、Aspx页面: 二、Aspx后台代码:using System;using System.Collections.Generic;using System.Linq;using System.W...
分类:
其他好文 时间:
2014-07-09 16:09:58
阅读次数:
164
【窗体效果图】【程序源代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using...
分类:
其他好文 时间:
2014-07-09 15:59:37
阅读次数:
243
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
其他好文 时间:
2014-07-09 14:37:25
阅读次数:
170
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Autodesk.AutoCAD.DatabaseServices;using Autodesk.AutoCAD.Edito...
分类:
其他好文 时间:
2014-07-09 14:23:36
阅读次数:
187
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 飞行棋{ class Program { //地图 //0代表普通方块□ ...
分类:
其他好文 时间:
2014-07-08 21:57:27
阅读次数:
168
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace C_编辑基础
{
//枚举的意义就是限定变量的取值范围
enum gender{Male,Female,Unkown}; //声明一个类型,它是枚举类型(定义一个枚举),这个枚举有三个值。...
分类:
其他好文 时间:
2014-07-08 13:38:36
阅读次数:
191
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceConsoleApplication1
{
classProgram
{
staticvoidMain(string[]args)
{
inti=10;//值类型
intj=10;//必须初始化
intk;//不需要初始化
int[]iarr={..
分类:
其他好文 时间:
2014-07-08 09:42:06
阅读次数:
221