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);
}
}
}
}
查看全文
相关阅读:
主成分分析法
K-means算法
高斯混合模型
data structure test
八皇后问题求解
商品管理系统课程设计
哈佛商学院20部必看电影
usaco1.1
Visual Studio 2012 出现关于ActivityLog.xml错误的解决方案
2012蓝桥杯决赛题
原文地址:https://www.cnblogs.com/sskset/p/153109.html
最新文章
前端css常用的选择小汇
前端css常用的选择小汇
前端,Java,产品经理,微信小程序,Python等资源合集大放送
bootstrap+fileinput插件实现可预览上传照片功能
洛谷 P1679 神奇的四次方数 WD
codevs 1160 蛇形矩阵
cogs 2104. [NOIP2015]神奇的幻方
洛谷 P1540 机器翻译
openjudge 14:求10000以内n的阶乘
推荐一些有效的stereo matching代码,对于3D图片的深度计算十分有效
热门文章
Stereo Matching by Training a Convolutional Neural Network to Compare Image Patches
Middlebury Stereo Datasets
Mean Shift Segmentation using OPENCV
opencv based joint bilateral filter
Emphasis on Filtering & Depth Map Occlusion Filling
Course Machine Learning Note
离散与维灾难
线性二次型调节控制
奇异值分解
马尔可夫决策过程
Copyright © 2011-2022 走看看