微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 如何在构造函数中设置属性值(显式接口实现)

[DataContract]
public class OrderSyncData : isync
{

    public OrderSyncData(Order o)
    {
        this.CurrentOrderStatus = o.DriverStatus;
        this.StatusDescription = o.StatusDescription;
        SyncTimestamp = o.SyncTimestamp; ????
    }
    [DataMember]
    public string CurrentOrderStatus { get; set; }
    [DataMember]
    public string StatusDescription { get; set; }
    [DataMember]// I don't think I need these any more
    public bool IsCanceled { get; set; }
    [DataMember]
    public bool IsResolved { get; set; }
    [DataMember]
    public bool IsPendingResponse { get; set; }

    DateTime isync.SyncTimestamp { get; set; }
}

如何设置isync.SyncTimestamp的值?我试着施放“这个”.但它不起作用

解决方法

这应该工作:
((isync)this).SyncTimestamp = o.SyncTimestamp;

注意额外的括号(isync).

原文地址:https://www.jb51.cc/csharp/243824.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐