EPPlus - LoadFromCollection - Text converted to number
问题 I am writing a program in C# that needs to export a List<MyObject> into Excel and I'm using EPPlus for doing so. My challenge is that my object has a property: string Prop1 { get; set; } And, one of the values I need to export has a value that, for example, is of the form of Prop1 = "123E4" . The challenge is that the EPPlus LoadFromCollection method exports this to Excel, but Excel converts it into a number using scientific notation (Outputted value = 1.23E+06 or 1230000 ). I've tried