public class A { public int Property1 { get; set; } } static void Main(){ A aa = new A(); Type type = aa.GetType();//获取类型 System.Reflection.PropertyInfo propertyInfo = type.GetProperty("Property1"); propertyInfo.SetValue(aa, , null);//给对应属性赋值 in…
Unity用Excel.dll简单读取Excel内容 需要Excel.dll 需要如下三个命名空间 using System.IO; using Excel; using System.Data; 1.新建Excel文件,并添加到Unity工程 这里新建的文件名为test.xml 2.创建一个C#脚本 using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; us…