标题:wcf代码有点问题,求高手
只看楼主
zfxueheng
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2012-8-9
结帖率:50%
已结贴  问题点数:20 回复次数:1 
wcf代码有点问题,求高手
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ch26Ex01Client.ServiceReference1;
namespace ch26Ex01Client.ServiceReference1
{
    class Program
    {
        static void Main(string[] args)
        {
            string numericInput = null ;
            int intParam;
            do
            {
                Console.WriteLine(
                    "Enter an integer and press enter to call the WCF service.");
            numericInput = Console.ReadLine();
            }
            while (!int.TryParse(numericInput,out intParam));
            ServiceClient client=new ServiceClient();
            Console.WriteLine(client.GetData(intParam));
            Console.WriteLine("press an key to exit.");
            Console.ReadKey();
        }
    }
}
这个代码是按照C#经典入门那本书敲得,但总是有错误,求高手
搜索更多相关主题的帖子: void service null Enter 
2012-08-14 16:03
浪迹V星痕
Rank: 2
等 级:论坛游民
帖 子:13
专家分:30
注 册:2012-8-7
得分:20 
回复 楼主 zfxueheng
这个看不到底层,错误具体也不好说!你最好是先设个断点 单一执行看看具体是那个地方错了 ?好给你解决
2012-08-15 16:30



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-379485-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.158616 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved