public void CopyFrom(match_item_info from) { if (from == this) { return; } Clear(); MergeFrom(from); }
public void MergeFrom(match_item_info from) { if (from == this) { return; } // infos foreach (KeyValuePair <int, short> pair in from.GetInfos()) { SetInfos(pair.Key, pair.Value); } }
public match_item_info(match_item_info from) { MergeFrom(from); }
public void SetMatchItems(match_item_info value) { matchItems_ = value; }