//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.Util
{
using System.Collections;
using System.Globalization;
//|
///
///
/// For internal use only. This provides case-insensitive hash code
/// for symbols and is not affected by the ambient culture.
///
///
internal class SymbolHashCodeProvider {
//|
///
/// [To be supplied.]
///
internal static readonly IHashCodeProvider Default = new CaseInsensitiveHashCodeProvider();
private SymbolHashCodeProvider() {
}
}
}