[DllImport("advapi32.dll")]
static extern int RegCreateKeyA(uint hKey, string lpSubKey, ref IntPtr phkResult);
Private Declare Function RegCreateKeyEx Lib "advapi32.dll" Alias "RegCreateKeyExA"
(ByVal hKey As Integer,
ByVal lpSubKey As String,
ByVal Reserved As Integer,
ByVal lpClass As String,
ByVal dwOptions As Integer,
ByVal samDesired As Integer,
ByVal lpSecurityAttributes As Integer,
ByRef phkResult As Integer,
ByRef lpdwDisposition As Integer) As Integer
None.
Microsoft.Win32.RegistryKey.CreateSubKey
None.
Please add some!
RegCreateKeyA(0x80000001, "Key Name", ref aKey);