zoukankan      html  css  js  c++  java
  • C#WCF中传输List对象

    C#WCF客户端生成的服务默认把集合List<>转化为数组[],我们可以用下列对策:

    对策一:客户端可以使用IList接收:

      服务端

    public interface ISqliteManagerWcfS
    {
    // TODO: 在此添加您的服务操作 [OperationContract] List<CommentDataModel> GetCommentData();
    }

      客户端

                SqliteManagerWcfSClient sqliteManagerWcfSClient = new SqliteManagerWcfSClient();
                IList<CommentDataModel> ss = sqliteManagerWcfSClient.GetCommentData();
    365个夜晚,我希望做到两天更一篇博客。加油,小白!
  • 相关阅读:
    Redis
    Redis
    运维
    Redis
    Redis
    Redis
    Redis
    Redis
    Redis
    Spring
  • 原文地址:https://www.cnblogs.com/qq2806933146xiaobai/p/14442507.html
Copyright © 2011-2022 走看看