简体   繁体   中英

convert Dictionary<String, double> to Dictionary<String, float> using Linq

我可以使用for循环进行转换,但是有一个Linq语句可以用作单行程序吗?

您可以使用:

var newdict = original.ToDictionary(kvp => kvp.Key, kvp => (float)kvp.Value);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM