コード例 #1
0
        static internal TrackPoint ToTrackPoint(this WCFTrackPoint o)
        {
            TrackPoint result = new TrackPoint();

            result.Id        = o.Id;
            result.TrackType = o.TrackType;
            result.GamePoint = o.GamePoint;
            result.Value     = o.Value;

            return(result);
        }
コード例 #2
0
ファイル: TrackPoint.cs プロジェクト: lantsev1981/Agot2Server
        public WCFTrackPoint ToWCFTrackPoint()
        {
            WCFTrackPoint result = new WCFTrackPoint();

            result.Id        = this.Id;
            result.TrackType = this.TrackType;
            result.GamePoint = this.GamePoint;
            result.Value     = this.Value;

            return(result);
        }