摘要:
一丶装箱和拆箱 值类型:int、double、char、bool、decimal、struct、enum 引用类型:各种class类、string、数组、接口、委托、object 1.装箱: 从值类型接口转换到引用类型。 2.拆箱: 从引用类型转换到值类型。 二丶在.Net中所有可序列化的类都被标记 阅读全文
摘要:
引入EPPlus的NuGet程序包 一丶导出excel文件 1 static void Main(string[] args) 2 { 3 FileInfo newFile = new FileInfo(@"E:\test.xlsx"); 4 if (newFile.Exists) 5 { 6 ne 阅读全文