Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 csv 文件中有一个字段,其中包含以下文本:Frozen at 20°C
但是当我导入我的数据库时,它显示为:20℃冷冻
有谁知道我怎样才能保持正确的学位符号?
我的导入代码看起来像这样
string fieldValue = csv[i].Trim();
我只需要在创建流阅读器时指定 Encoding.Default
CsvReader csv = new CsvReader(new StreamReader(file.InputStream, Encoding.Default), true)
感谢 Stephane 的所有帮助,你最终把我带到了那里。