Operation registry class

Source: Internet
Author: User

# Region registry class
Public class Reg
{
Public static void setsubkey (string key, string value)
{
Registrykey rkey = registry. localmachine. opensubkey (@ "SOFTWARE \ XXX", true );
Rkey. setvalue (Key, value );
Rkey. Close ();
}

Public static string getsubkey (string key)
{
Try
{
Registrykey rkey = registry. localmachine. opensubkey (@ "SOFTWARE \ XXX", true );
String v = rkey. getvalue (key). tostring ();
Rkey. Close ();
Return V;
}
Catch
{
Throw new exception ("The key is missing in the Registry ");
}
}

///


// create a root node
///
Public static void regroot ()
{< br> registrykey = registry. localmachine. opensubkey (@ "software", true);
key. createsubkey ("XXX");
key. close ();
}< br>
}< BR ># endregion

class-related attributes and Methods:
registrykey regsubkey = registry. classesroot. opensubkey (strkey, true);
registrykey regctrlkey = regsubkey. createsubkey ("control");
regctrlkey. close ();
registrykey reginprocsvr = regsubkey. opensubkey ("inprocserver32", true);
reginprocsvr. setvalue ("codebase", assembly. getexecutingassembly (). codebase);
reginprocsvr. close ();
regsubkey. close ();

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.