使用管理员权限启动vs (否者将导致ServiceHost开启失败 权限不足) 1.创建一个空的控制台程序 2.添加程序集引用 System.ServiceModel 3.写入一些代码 如下 using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel; using System.Text; using System.Threading.Tasks; namespace H
原文 Windows Azure入门教学系列 (一): 创建第一个WebRole程序 在第一篇教学中,我们将学习如何在Visual Studio 2008 SP1中创建一个WebRole程序(C#语言).在开始学习之前,请确保你的机器上已经安装了: Windows Azure Tools for Microsoft Visual Studio 1.1 (February 2010) Windows Azure Software Development Kit (November 2009) 步骤
某业界大牛推荐最佳的途径是从raytracing入门,所以本屌开始学习<Ray Tracing In One Weekend>. 该书是基于C++的.本屌从未学过C++.感觉告诉我,要先搭环境.至于为什么选择CodeBlocks,不解释.当下载的CodeBlocks版本不包含GCC时,自己配置GCC是可能出错的地方: 1. 未将mingwm10_gcc-和wxmsw28u_gcc-解压到CB_20160925-的文件夹下,导致CodeBlocks安装不了 2. Settings->Co
一.创建WCF程序 1.创建一个控制台程序(WCFBlog) 2.添加wcf项目 3.将默认的IService1和Service1改成自己的名字 4.在ICalculateService里写契约 // TODO: 在此添加您的服务操作 [OperationContract] int GetSum(int num1, int num2); 5.在CalculateService.svc里写该方法的具体实现 public int GetSum(int num1, int num2