From 6a255f7063867c61c3f68efa1d3da8b836a48c32 Mon Sep 17 00:00:00 2001 From: QQ Date: Mon, 25 Oct 2021 15:18:50 +0800 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c5ee1b4..1ac4afe 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Create definition ```csharp public class InstalledApp { - public string DisplayName { set; get; } + public string DisplayName { set; get; } public string DisplayVersion { set; get; } public int? EstimatedSize { set; get; } } @@ -19,11 +19,11 @@ public class InstalledApp Create Query ```csharp var regt = new RegQuery() - .useSetting(x => - { - x.Hive = RegistryHive.LocalMachine; - x.SubKey = @"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall"; - }); + .useSetting(x => + { + x.Hive = RegistryHive.LocalMachine; + x.SubKey = @"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall"; + }); ``` Query data ```csharp