因为语音识别要预设一些字符来匹配,并进行相应的操作,但是又不想在代码里罗列,于是就想用Excel来进行管理,并通过Unity来批导入,一个foreach就能把数据读到我们要维护的数据结构里。
首先要加入库文件 Excel.dll 和ICSharpCode.SharpZipLib库文件,链接 http://exceldatareader.codeplex.com/
using Excel;
using System.Data;
public class ExcelAccess
{
public static string ExcelName = "Book.xlsx";
public static string[] SheetNames = { "sheet1", "sheet2", "sheet3", "sheet4" };
public static List<Menu> SelectMenuTable(int tableId)
{
DataRowCollection collect =