Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

	public string GetValue( string SubKey )
	{
		RegistryKey Key = Registry.CurrentUser.OpenSubKey( KeyPath );

		if ( Key.GetValue( SubKey ) != null )
		{
			string Value = Key.GetValue( SubKey ).ToString();
			Key.Close();

			return Value;
		}

		else
		{
			return "";
		}
	}

 

This throws an exception: System.NullReferenceException: Object reference not set to an instance of an object.

At Line: "if ( Key.GetValue( SubKey ) != null )"

 

What am I doing wrong? Oo

Can't afford to be neutral on a moving train...
Posted

Okay, now I feel dumb.

 

		if ( Key == null )
		{
			Key = Registry.CurrentUser.CreateSubKey( KeyPath );
		}

Can't afford to be neutral on a moving train...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...