public NameCreatorCounter Merge(NameCreatorCounter other)
 {
     if (num < other.num)
     {
         num = other.num;
     }
     return(this);
 }
		public NameCreatorCounter Merge(NameCreatorCounter other) {
			if (num < other.num)
				num = other.num;
			return this;
		}