summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/Microsoft/Win32/Registry.cs
blob: aa2dd9b396a25ec24eecad676e09224b92121b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

namespace Microsoft.Win32
{
    internal static class Registry
    {
        public static readonly RegistryKey CurrentUser = RegistryKey.CurrentUser;
        public static readonly RegistryKey LocalMachine = RegistryKey.LocalMachine;
    }
}