zoukankan
html css js c++ java
如何获取本机已经安装了的软件的列表?
using
System;
using
Microsoft.Win32;
namespace
ConsoleApplication7
{
/**/
///
<summary>
///
Class1 の概要の説明です。
///
</summary>
class
Class1
{
/**/
///
<summary>
///
アプリケーションのメイン エントリ ポイントです。
///
</summary>
[STAThread]
static
void
Main(
string
[] args)
{
RegistryKey rk
=
Registry.LocalMachine.OpenSubKey(
"
SOFTWARE
"
);
PrintKeys(rk);
Console.ReadLine();
}
static
void
PrintKeys(RegistryKey rkey)
{
//
Retrieve all the subkeys for the specified key.
String [] names
=
rkey.GetSubKeyNames();
//
Print the contents of the array to the console.
foreach
(String s
in
names)
{
Console.WriteLine(s);
}
}
}
}
查看全文
相关阅读:
数组和函数
循环练习题
JavaScript 循环
函数
JavaScript简介2
JS练习题1
JavaScript简介
css样式综合
格式与布局
列表和方块
原文地址:https://www.cnblogs.com/sskset/p/153109.html
最新文章
freemarker使用
idea的一些快捷键
面向对象程序设计原则
创建一个简单的windows服务,每间隔一定时间重复执行批处理文件
linux 安装 禅道
Linux yum安装MySQL5.7
centos查看实时网络带宽占用情况方法
redis 设置密码
redis 安装
微信公众号自动回复
热门文章
shell脚本乱码问题
linux 安装jdk
redis服务器搭建
关于TP框架的命名空间
关于TP框架的基础构造
PHP 学习 一 基础
数据库范式
MySQL创建数据表和插入数据
表单验证、正则表达式
JS DOM 对象
Copyright © 2011-2022 走看看