MVRegistry 3.1.0

dotnet add package MVRegistry --version 3.1.0
NuGet\Install-Package MVRegistry -Version 3.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MVRegistry" Version="3.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MVRegistry --version 3.1.0
#r "nuget: MVRegistry, 3.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MVRegistry as a Cake Addin
#addin nuget:?package=MVRegistry&version=3.1.0

// Install MVRegistry as a Cake Tool
#tool nuget:?package=MVRegistry&version=3.1.0

MVRegistry

Easy to use registry

Features

Key
  • Create
  • Delete
  • Exists
  • GetNames
Value
  • CreateBinary
  • CreateDWord
  • CreateQWord
  • CreateString
  • CreateMultiString
  • CreateExpandString
  • CreateUnknown
  • Delete
  • GetNames
  • GetValue

Using

using MVRegistry;

try
{
    //Select HKEY_CURRENT_USER\Software
    RegEdit reg = new RegEdit(HKEY.CurrentUser, "Software");

    //Check if run as administrator
    if (reg.IsRunAsAdmin())
    {
        //Select HKEY_CURRENT_USER
        reg.HKEY = HKEY.CurrentUser;

        //This path exist this key or not?
        if (!reg.Key.Exists("MV Soft"))
        {
            //If not, create this key
            reg.Key.Create("MV Soft");
        }

        //Change path to "HKEY_CURRENT_USER\Software\MV Soft" for create value
        reg.Path = "Software\\MV Soft";

        //Create the Binary value in the byte array
        reg.Value.CreateBinary("Binary", new byte[] { 1, 2, 3, 4, 5, 6, 7 });

        //Create the DWord value in the Integer(32bit - 4byte)
        reg.Value.CreateDWord("DWord", 14);
        
        //Create the QWord value in the Integer(64bit - 8byte)
        reg.Value.CreateQWord("QWord", 14);
        
        //Create the String value in the string
        reg.Value.CreateString("String", "Coded By Soheil MV");

        //Create the ExpandString value in the string
        reg.Value.CreateExpandString("ExpandString", "Coded By Soheil MV");

        //Create the MultiString value in the string array
        reg.Value.CreateMultiString("MultiString", new string[] { "a", "b", "c", "d", "e", "f" });

        //Create the Unknown value in the Object
        reg.Value.CreateUnknown("Unknown", new string[] { "U", "N", "K", "N", "O", "W", "N" });

        Console.WriteLine("Successfully.");
    }
    else
    {
        Console.WriteLine("Please program run as admin!");
    }
}
catch (Exception ex)
{
    Console.WriteLine($"Error : {ex.Message}");
}

Serialize and Deserialize

Variables Supported
Default New
int bool
long byte
string char
string[] decimal
byte[] double
- short
- sbyte
- float
- ushort
- uint
- ulong
- DateTime
- bool[]
- char[]
- decimal[]
- double[]
- short[]
- int[]
- long[]
- sbyte[]
- float[]
- ushort[]
- uint[]
- ulong[]

Using

using MVRegistry;

class Program
{
    static void Main(string[] args)
    {
    
        //Wirter
        using (RegEdit reg = new RegEdit(HKEY.CurrentUser, "Software"))
        {
            License lic = new License()
            {
                Name = "Soheil MV",
                Expired = DateTime.Now.AddMonths(1),
                Active = true,
            };
            
            //Create a key with the class name and create values with its variables.
            reg.Serialize(lic);
        }
        
        //Reader
        using (RegEdit reg = new RegEdit(HKEY.CurrentUser, "Software"))
        {
            //If not found, it return null
            License lic = reg.Deserialize<License>();
        }
    }
}

class License
{
    public string Name { get; set; }
    public DateTime Expired { get; set; }
    public bool Active { get; set; }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.0 341 11/9/2022
2.1.0 311 11/7/2022
2.0.0 393 7/30/2022