Improve Dictionary TryGetValue size/perfomance (dotnet/coreclr#27195)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / AppDomainSetup.cs
blob925ef7404b20e6d6f54f8fa1a3ab33453d9cb290
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 namespace System
7 public sealed class AppDomainSetup
9 internal AppDomainSetup() { }
10 public string? ApplicationBase => AppContext.BaseDirectory;
11 public string? TargetFrameworkName => AppContext.TargetFrameworkName;