Plurality in user messages

前端 未结 25 1550
没有蜡笔的小新
没有蜡笔的小新 2021-01-30 01:53

Many times, when generating messages to show to the user, the message will contain a number of something that I want to inform the customer about.

I\'ll give a

25条回答
  •  花落未央
    2021-01-30 02:27

    It gets a little bit shorter with

    string message = "Are you sure you want to delete " + noofitemsselected + " item" + (noofitemsselected>1 ? "s" : "") + "?";
    

提交回复
热议问题