コード例 #1
0
 /// <summary>
 /// Merges the result name with another provided result.
 /// </summary>
 public void Combine(RibbonResult other)
 {
     Name += $" / {other.Name}";
 }
コード例 #2
0
ファイル: RibbonResult.cs プロジェクト: optizard/PKHeX
 public void Combine(RibbonResult other)
 {
     Name += " / " + other.Name;
 }