我有一个double列表,我必须删除那些有十位以外的十进制数字的逗号。
例如,如果我有54.0,我什么都不做,而如果我有6.7,我想把它变成67。
答案 0 :(得分:2)
你可以试试这个
{
"to":"eEBrg.... .... .... .... (FCM Token)",
"priority": "normal",
"content_available": true,
"notification":{
(do not send body here if you want to send the silent notification)
"requesttype":"ring" // optional
}
}
更新:通过一些错误处理来回应一些评论
var i = Convert.ToInt32(d.ToString().Replace(".", ""))