我得到了下面的類:聯合元素
public class Action
{
public Player player { get; private set; }
public string type { get; private set; }
public decimal amount { get; private set; }
}
這是在列表中使用:
public List<Action> Action
根據type
我顯示一些自定義文本。但是,如果type = "folds"
我只顯示1 Folds
。如果有很多folds
層出不窮,但目前顯示:
1 folds, 1 folds, 1 folds, ...
我如何可以結合使用這些folds
在一個巧妙的方法和這樣顯示出來:
3 folds, ...
我也想知道這一點,但你需要計算*連續*相等的動作。 –