using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“downloading , wait a moment please …”);
for (int i = 0; i <= 1[……]
c# 委托和事件
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
//声名委托
delegate void weituo(string e);
public partial class Form1 : Form
{
//声名事件
private event weituo[……]
c# 接口
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
public class Program
{
static void Main(string[] args)
{
接口 h = gg.方法();
h.ss();
}
}
interface 接口
{
void ss();
}
class gg
{
static uu u = new uu();
class uu : 接口
{
#region 接口 成员
void[……]
c# 汉诺塔
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Program p = new Program();
p.Hanoi(“a”, “b”, “c”, 20);
}
public void Hanoi(string StartStick, string TempStick, string EndStick, int[……]
c# 二维数组
int[,] i = new int[2, 2];
i[0, 1] = 1;
//GetLength 0表示第一个 1表示第二个
for (int a = 0; a < i.GetLength(0); a++)
{
MessageBox.Show(i[a, 1].ToString());
}%MCEPASTEBIN%[……]
c# 多线程类
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace ThreadExample
{
public partial class ThreadExample : Form
{
//声明一个线程
private Thread timerThread;
//声明[……]
c# 全局钩子
using System;
using System.Windows.Forms;
using gma.System.Windows;
namespace GlobalHookDemo
{
class MainForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Button buttonStart;
private System.Windows.Forms.Button buttonStop;
 [……]
Wince操作SQLite
using System;
using System.Collections;
using System.Data;
using System.Data.SQLite;
namespace Maticsoft.DBUtility
{
/// <summary>
/// 数据访问基础类(基于SQLite)
/// 可以用户可以修改满足自己项目的需要。
/// </summary>
public abstract class DbHelperSQLite
{
//数据库连接字符串(web.config来配置),可以动态更改connec[……]
文件内容批量替换工具 v 1.0
1.选择一个目录
2.输入原始内容列表
3.输入替换内容列表
4.选择文件类型
5.开始
提示:回车为一行,可以有很多行,但是原始内容列表必须和替换内容列表行数一致。
共享地址: http://cloud.osdll.com/#/s/LafD 提取密码: z1opos
链接:https://pan.baidu.com/s/1U-OK-ysaa-9zK3FSndACGw
提取码:sk12
复制这段内容后打开百度网盘手机App,操作更方便哦
[……]
语音合成帮手 v 0.1
语音转文件功能
1.语音转文件
2.点击开始录音
3.停止录音
4.转换
5.在语音文件-内容里显示内容
语音合成功能
1.在语音合成-内容里面撰写要合成的文字内容
2.调节语速
3.调节音量
4.调节音调
5.选择发声类型 [……]