章术

导航

2011年6月2日

WCF Helloworld 入门教程

摘要: 1.打开vs,file->new->project->wcf->wcf service application2.建立好一个wcf之后在Iservice1.svc添加代码如下:详细见注释 using System;using System.Collections.Generic;using System.Linq;using System.Runtime.Serialization;using System.ServiceModel;using System.ServiceModel.Web;using System.Text;namespace myServer{ / 阅读全文

posted @ 2011-06-02 12:20 章术 阅读(932) 评论(0) 推荐(1) 编辑

C#快捷键(转)

摘要: F6: 生成解决方案 Ctrl+F6: 生成当前项目 F7: 查看代码 Shift+F7: 查看窗体设计器 F5: 启动调试 Ctrl+F5: 开始执行(不调试) Shift+F5: 停止调试 Ctrl+Shift+F5: 重启调试 F9: 切换断点 Ctrl+F9: 启用/停止断点 Ctrl+Shift+F9: 删除全部断点 F10: 逐过程 Ctrl+F10: 运行到光标处 F11: 逐语句 编辑快捷键 Shift+Alt+Enter: 切换全屏编辑 Ctrl+B,T / Ctrl+K,K: 切换书签开关 Ctrl+B,N / Ctrl+K,N: 移动到下一书签 Ctrl+B,P: 移动到 阅读全文

posted @ 2011-06-02 11:09 章术 阅读(419) 评论(0) 推荐(0) 编辑