singrdk/base/Libraries/System.Web/Util/SymbolHashCodeProvider.cs

33 lines
1.1 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
//------------------------------------------------------------------------------
// <copyright file="SymbolHashCodeProvider.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
2008-11-17 18:29:00 -05:00
namespace System.Web.Util
{
2008-03-05 09:52:00 -05:00
using System.Collections;
using System.Globalization;
//| <include file='doc\SymbolHashCodeProvider.uex' path='docs/doc[@for="SymbolHashCodeProvider"]/*' />
/// <devdoc>
/// <para>
/// For internal use only. This provides case-insensitive hash code
/// for symbols and is not affected by the ambient culture.
/// </para>
/// </devdoc>
internal class SymbolHashCodeProvider {
//| <include file='doc\SymbolHashCodeProvider.uex' path='docs/doc[@for="SymbolHashCodeProvider.Default"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
internal static readonly IHashCodeProvider Default = new CaseInsensitiveHashCodeProvider();
private SymbolHashCodeProvider() {
}
}
}