使用c#将double转换为int而不会丢失数字

时间:2017-12-14 10:58:27

标签: c# double

我有一个double列表,我必须删除那些有十位以外的十进制数字的逗号。

例如,如果我有54.0,我什么都不做,而如果我有6.7,我想把它变成67。

1 个答案:

答案 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(".", ""))