首页 > 代码库 > main

main

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication2{    class Program    {                static void Main(string[] args)        {            string[] outputkey=new string[10000];            string[] outputvalue;            INIHelper inihelper=new INIHelper();            //inihelper.GetAllSectionNames(outputkey, "C:\\Windows\\winsxs\\x86_microsoft-windows-s..spp-tools.resources_31bf3856ad364e35_6.1.7600.16385_zh-cn_8844e1cbc75182ec");            inihelper.Read("Strings", "L_optInstallProductKeyUsage", "C:\\Windows\\winsxs\\x86_microsoft-windows-s..spp-tools.resources_31bf3856ad364e35_6.1.7600.16385_zh-cn_8844e1cbc75182ec\\slmgr.ini");                }    }}