本文整理汇总了VB.NET中Microsoft.Win32.Registry.DynData字段的典型用法代码示例。如果您正苦于以下问题:VB.NET Registry.DynData字段的具体用法?VB.NET Registry.DynData怎么用?VB.NET Registry.DynData使用的例子?那么恭喜您, 这里精选的字段代码示例或许可以为您提供帮助。您也可以进一步了解该字段所在类Microsoft.Win32.Registry
的用法示例。
在下文中一共展示了Registry.DynData字段的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: Reg
' 导入命名空间
Imports Microsoft.Win32
Class Reg
Public Shared Sub Main()
' Create a RegistryKey, which will access the HKEY_DYN_DATA
' key in the registry of this machine.
Dim rk As RegistryKey = Registry.DynData
' Print out the keys.
PrintKeys(rk)
End Sub
Shared Sub PrintKeys(rkey As RegistryKey)
' Retrieve all the subkeys for the specified key.
Dim names As String()
Try
names = rkey.GetSubKeyNames()
Catch ex As System.IO.IOException
Console.WriteLine("HKEY_DYN_DATA is not available on this machine.")
Exit Sub
End Try
Dim icount As Integer = 0
Console.WriteLine("Subkeys of " & rkey.Name)
Console.WriteLine("-----------------------------------------------")
' Print the contents of the array to the console.
Dim s As String
For Each s In names
Console.WriteLine(s)
' The following code puts a limit on the number
' of keys displayed. Comment it out to print the
' complete list.
icount += 1
If icount >= 10 Then
Exit For
End If
Next s
End Sub
End Class