Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Collections / CaseInsensitiveComparer.cs / 1 / CaseInsensitiveComparer.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: CaseInsensitiveComparer ** ** ** ============================================================*/ namespace System.Collections { //This class does not contain members and does not need to be serializable using System; using System.Collections; using System.Globalization; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class CaseInsensitiveComparer : IComparer { private CompareInfo m_compareInfo; private static CaseInsensitiveComparer m_InvariantCaseInsensitiveComparer; public CaseInsensitiveComparer() { m_compareInfo = CultureInfo.CurrentCulture.CompareInfo; } public CaseInsensitiveComparer(CultureInfo culture) { if (culture==null) { throw new ArgumentNullException("culture"); } m_compareInfo = culture.CompareInfo; } public static CaseInsensitiveComparer Default { get { return new CaseInsensitiveComparer(CultureInfo.CurrentCulture); } } public static CaseInsensitiveComparer DefaultInvariant { get { if (m_InvariantCaseInsensitiveComparer == null) { m_InvariantCaseInsensitiveComparer = new CaseInsensitiveComparer(CultureInfo.InvariantCulture); } return m_InvariantCaseInsensitiveComparer; } } // Behaves exactly like Comparer.Default.Compare except that the comparison is case insensitive // Compares two Objects by calling CompareTo. If a == // b,0 is returned. If a implements // IComparable, a.CompareTo(b) is returned. If a // doesn't implement IComparable and b does, // -(b.CompareTo(a)) is returned, otherwise an // exception is thrown. // public int Compare(Object a, Object b) { String sa = a as String; String sb = b as String; if (sa != null && sb != null) return m_compareInfo.Compare(sa, sb, CompareOptions.IgnoreCase); else return Comparer.Default.Compare(a,b); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: CaseInsensitiveComparer ** ** ** ============================================================*/ namespace System.Collections { //This class does not contain members and does not need to be serializable using System; using System.Collections; using System.Globalization; [Serializable] [System.Runtime.InteropServices.ComVisible(true)] public class CaseInsensitiveComparer : IComparer { private CompareInfo m_compareInfo; private static CaseInsensitiveComparer m_InvariantCaseInsensitiveComparer; public CaseInsensitiveComparer() { m_compareInfo = CultureInfo.CurrentCulture.CompareInfo; } public CaseInsensitiveComparer(CultureInfo culture) { if (culture==null) { throw new ArgumentNullException("culture"); } m_compareInfo = culture.CompareInfo; } public static CaseInsensitiveComparer Default { get { return new CaseInsensitiveComparer(CultureInfo.CurrentCulture); } } public static CaseInsensitiveComparer DefaultInvariant { get { if (m_InvariantCaseInsensitiveComparer == null) { m_InvariantCaseInsensitiveComparer = new CaseInsensitiveComparer(CultureInfo.InvariantCulture); } return m_InvariantCaseInsensitiveComparer; } } // Behaves exactly like Comparer.Default.Compare except that the comparison is case insensitive // Compares two Objects by calling CompareTo. If a == // b,0 is returned. If a implements // IComparable, a.CompareTo(b) is returned. If a // doesn't implement IComparable and b does, // -(b.CompareTo(a)) is returned, otherwise an // exception is thrown. // public int Compare(Object a, Object b) { String sa = a as String; String sb = b as String; if (sa != null && sb != null) return m_compareInfo.Compare(sa, sb, CompareOptions.IgnoreCase); else return Comparer.Default.Compare(a,b); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToggleButton.cs
- StateItem.cs
- XmlSchemaType.cs
- CommandValueSerializer.cs
- EventManager.cs
- ByteAnimation.cs
- SoapExtensionTypeElementCollection.cs
- WebBrowserContainer.cs
- InfoCardBaseException.cs
- TextSelection.cs
- RawStylusSystemGestureInputReport.cs
- IsolatedStorage.cs
- ComponentCache.cs
- WebHttpBinding.cs
- Visual3DCollection.cs
- PathFigure.cs
- StylusButton.cs
- ViewCellSlot.cs
- ActionItem.cs
- EntityTypeEmitter.cs
- ToolStripDropDownClosedEventArgs.cs
- PasswordBoxAutomationPeer.cs
- XmlWrappingReader.cs
- SupportingTokenSecurityTokenResolver.cs
- URLString.cs
- VirtualizedCellInfoCollection.cs
- ResourceSet.cs
- XmlSchemaComplexContentExtension.cs
- LinkLabelLinkClickedEvent.cs
- PagerStyle.cs
- TemplateControl.cs
- XPathQueryGenerator.cs
- UpdateCompiler.cs
- TextParagraphView.cs
- SqlStatistics.cs
- _Rfc2616CacheValidators.cs
- BinHexEncoder.cs
- UnSafeCharBuffer.cs
- Compiler.cs
- DataGridViewRowHeaderCell.cs
- FloaterBaseParagraph.cs
- _NativeSSPI.cs
- CharacterString.cs
- InvokeBase.cs
- Metadata.cs
- SkipStoryboardToFill.cs
- ProviderConnectionPointCollection.cs
- OracleCommand.cs
- TableParagraph.cs
- Pen.cs
- StyleBamlRecordReader.cs
- ComplexPropertyEntry.cs
- Suspend.cs
- StateElementCollection.cs
- CollectionConverter.cs
- RegistrySecurity.cs
- SoapAttributeOverrides.cs
- ExpressionNormalizer.cs
- OutputScopeManager.cs
- SharedPerformanceCounter.cs
- AnnouncementEndpointElement.cs
- DataServiceRequestException.cs
- TrustManagerPromptUI.cs
- WindowsMenu.cs
- ComplusTypeValidator.cs
- CheckBoxAutomationPeer.cs
- FacetDescription.cs
- SmtpFailedRecipientException.cs
- ListCommandEventArgs.cs
- BuiltInExpr.cs
- XmlBufferReader.cs
- MoveSizeWinEventHandler.cs
- PointF.cs
- Operator.cs
- ComboBox.cs
- XmlWrappingReader.cs
- LogReservationCollection.cs
- EmulateRecognizeCompletedEventArgs.cs
- UnitySerializationHolder.cs
- ResourceReader.cs
- CharacterMetricsDictionary.cs
- SchemaEntity.cs
- CompareInfo.cs
- ComponentDispatcherThread.cs
- EraserBehavior.cs
- WindowsListBox.cs
- SessionPageStatePersister.cs
- LocatorManager.cs
- DataGridTableCollection.cs
- FontResourceCache.cs
- RowSpanVector.cs
- MenuItemStyleCollection.cs
- EntityTypeEmitter.cs
- PointAnimation.cs
- WorkflowViewManager.cs
- PiiTraceSource.cs
- KeyBinding.cs
- ContentPresenter.cs
- TextSyndicationContent.cs
- PassportPrincipal.cs