コード例 #1
0
ファイル: Regedit.cs プロジェクト: secondii/Yutai
        public static string Is64or32System()
        {
            string str = "";

            if (RegistryTools.GetPlatform() == RegistryTools.Platform.X64)
            {
                str = "64";
            }
            else if (RegistryTools.GetPlatform() == RegistryTools.Platform.X86)
            {
                str = "32";
            }
            return(str);
        }