File: System\Text\CodePagesEncodingProvider.Default.cs | Web Access |
Project: src\src\libraries\System.Text.Encoding.CodePages\src\System.Text.Encoding.CodePages.csproj (System.Text.Encoding.CodePages) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Text { public sealed partial class CodePagesEncodingProvider : EncodingProvider { /// <summary>Get the system default non-unicode code page, or 0 if not available.</summary> private static int SystemDefaultCodePage { get { return 0; } } } } |