Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/19/16 09:49:35 (8 years ago)
Author:
thasling
Message:

changed a few method names and other refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/thasling/DistributedGA/DistributedGA.Core/Domain/MessageRecieveEventArgs.cs

    r13524 r13553  
    11using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
    62
    7 namespace DistributedGA.Core.Domain
    8 {
    9     public class MessageRecieveEventArgs : EventArgs
    10     {
    11         public int val;
    12         public SolutionInfo[] Population { get; set; }
    13         public PeerInfo Sender { get; set; }
    14     }
     3namespace DistributedGA.Core.Domain {
     4  public class MessageRecieveEventArgs : EventArgs {
     5    public int val;
     6    public SolutionInfo[] data { get; set; }
     7    public PeerInfo Sender { get; set; }
     8  }
    159}
Note: See TracChangeset for help on using the changeset viewer.