Development Class C#

//-----------------------------------------------------------------------
// 
//     Copyright (c) ParanoidMike. All rights reserved.
// 
//-----------------------------------------------------------------------
namespace ParanoidMike
{
    using System;
    using System.Diagnostics;
    using System.IO;
    using System.Runtime.Serialization.Formatters.Binary;
    using Microsoft.Win32;
    /// 
    /// Reusable functions for many uses.
    /// 

    public static class Utility
    {
        #region Variables
        /// 
        /// Variable for the HKCU hive, to be used with functions that use the RegistryKey class.
        /// 

        private static RegistryKey hkcu = Registry.CurrentUser;
        /// 
        /// Variable for the HKLM hive, to be used with functions that use the RegistryKey class.
        /// 

        private static RegistryKey hklm = Registry.LocalMachine;
        /// 
        /// Variable for identifying the major version of the Operating System.
        /// 

        private static int osVersion = -1; // contains os major version number
        #endregion
        /// 
        /// Writes a Registry value to the Registry.
        /// 

        /// 
        /// Specifies whether to write to the HKCU hive:
        /// - if True, writes to HKCU
        /// - if False, writes to HKLM
        /// 
        /// 
        /// The relative path (within the specified hive) to the Registry Key where the value is found.
        /// 
        /// 
        /// The Registry value whose data is written.
        /// 
        /// 
        /// The data to be written to the specified Registry value.
        /// 
        public static void SetRegistryValue(
            bool   userHive, 
            string subKey, 
            string valueName, 
            byte[] valueData)
        {
            RegistryKey registrySubKey;
            // Note - don't forget to set writeable = True anytime you're going to write to the Registry.  How embarrassing to miss this for two days!
            if (userHive)
            {
                registrySubKey = hkcu.OpenSubKey(subKey, true);
            }
            else
            {
                registrySubKey = hklm.OpenSubKey(subKey, true);
            }
            registrySubKey.SetValue(
                valueName, 
                valueData, 
                RegistryValueKind.Binary);
            registrySubKey.Close();
            if (userHive)
            {
                hkcu.Close();
            }
            else
            {
                hklm.Close();
            }
        }
    }
}