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 / Generic / Comparer.cs / 1 / Comparer.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
using System;
using System.Collections;
using System.Collections.Generic;
namespace System.Collections.Generic
{
using System.Globalization;
using System.Runtime.CompilerServices;
[Serializable()]
[TypeDependencyAttribute("System.Collections.Generic.GenericComparer`1")]
public abstract class Comparer : IComparer, IComparer
{
static Comparer defaultComparer;
public static Comparer Default {
get {
Comparer comparer = defaultComparer;
if (comparer == null) {
comparer = CreateComparer();
defaultComparer = comparer;
}
return comparer;
}
}
private static Comparer CreateComparer() {
Type t = typeof(T);
// If T implements IComparable return a GenericComparer
if (typeof(IComparable).IsAssignableFrom(t)) {
//return (Comparer)Activator.CreateInstance(typeof(GenericComparer<>).MakeGenericType(t));
return (Comparer)(typeof(GenericComparer).TypeHandle.CreateInstanceForAnotherGenericParameter(t));
}
// If T is a Nullable where U implements IComparable return a NullableComparer
if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Nullable<>)) {
Type u = t.GetGenericArguments()[0];
if (typeof(IComparable<>).MakeGenericType(u).IsAssignableFrom(u)) {
//return (Comparer)Activator.CreateInstance(typeof(NullableComparer<>).MakeGenericType(u));
return (Comparer)(typeof(NullableComparer).TypeHandle.CreateInstanceForAnotherGenericParameter(u));
}
}
// Otherwise return an ObjectComparer
return new ObjectComparer();
}
public abstract int Compare(T x, T y);
int IComparer.Compare(object x, object y) {
if (x == null) return y == null ? 0 : -1;
if (y == null) return 1;
if (x is T && y is T) return Compare((T)x, (T)y);
ThrowHelper.ThrowArgumentException(ExceptionResource.Argument_InvalidArgumentForComparison);
return 0;
}
}
[Serializable()]
internal class GenericComparer : Comparer where T: IComparable
{
public override int Compare(T x, T y) {
if (x != null) {
if (y != null) return x.CompareTo(y);
return 1;
}
if (y != null) return -1;
return 0;
}
// Equals method for the comparer itself.
public override bool Equals(Object obj){
GenericComparer comparer = obj as GenericComparer;
return comparer != null;
}
public override int GetHashCode() {
return this.GetType().Name.GetHashCode();
}
}
[Serializable()]
internal class NullableComparer : Comparer> where T : struct, IComparable
{
public override int Compare(Nullable x, Nullable y) {
if (x.HasValue) {
if (y.HasValue) return x.value.CompareTo(y.value);
return 1;
}
if (y.HasValue) return -1;
return 0;
}
// Equals method for the comparer itself.
public override bool Equals(Object obj){
NullableComparer comparer = obj as NullableComparer;
return comparer != null;
}
public override int GetHashCode() {
return this.GetType().Name.GetHashCode();
}
}
[Serializable()]
internal class ObjectComparer : Comparer
{
public override int Compare(T x, T y) {
return System.Collections.Comparer.Default.Compare(x, y);
}
// Equals method for the comparer itself.
public override bool Equals(Object obj){
ObjectComparer comparer = obj as ObjectComparer;
return comparer != null;
}
public override int GetHashCode() {
return this.GetType().Name.GetHashCode();
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
using System;
using System.Collections;
using System.Collections.Generic;
namespace System.Collections.Generic
{
using System.Globalization;
using System.Runtime.CompilerServices;
[Serializable()]
[TypeDependencyAttribute("System.Collections.Generic.GenericComparer`1")]
public abstract class Comparer : IComparer, IComparer
{
static Comparer defaultComparer;
public static Comparer Default {
get {
Comparer comparer = defaultComparer;
if (comparer == null) {
comparer = CreateComparer();
defaultComparer = comparer;
}
return comparer;
}
}
private static Comparer CreateComparer() {
Type t = typeof(T);
// If T implements IComparable return a GenericComparer
if (typeof(IComparable).IsAssignableFrom(t)) {
//return (Comparer)Activator.CreateInstance(typeof(GenericComparer<>).MakeGenericType(t));
return (Comparer)(typeof(GenericComparer).TypeHandle.CreateInstanceForAnotherGenericParameter(t));
}
// If T is a Nullable where U implements IComparable return a NullableComparer
if (t.IsGenericType && t.GetGenericTypeDefinition() == typeof(Nullable<>)) {
Type u = t.GetGenericArguments()[0];
if (typeof(IComparable<>).MakeGenericType(u).IsAssignableFrom(u)) {
//return (Comparer)Activator.CreateInstance(typeof(NullableComparer<>).MakeGenericType(u));
return (Comparer)(typeof(NullableComparer).TypeHandle.CreateInstanceForAnotherGenericParameter(u));
}
}
// Otherwise return an ObjectComparer
return new ObjectComparer();
}
public abstract int Compare(T x, T y);
int IComparer.Compare(object x, object y) {
if (x == null) return y == null ? 0 : -1;
if (y == null) return 1;
if (x is T && y is T) return Compare((T)x, (T)y);
ThrowHelper.ThrowArgumentException(ExceptionResource.Argument_InvalidArgumentForComparison);
return 0;
}
}
[Serializable()]
internal class GenericComparer : Comparer where T: IComparable
{
public override int Compare(T x, T y) {
if (x != null) {
if (y != null) return x.CompareTo(y);
return 1;
}
if (y != null) return -1;
return 0;
}
// Equals method for the comparer itself.
public override bool Equals(Object obj){
GenericComparer comparer = obj as GenericComparer;
return comparer != null;
}
public override int GetHashCode() {
return this.GetType().Name.GetHashCode();
}
}
[Serializable()]
internal class NullableComparer : Comparer> where T : struct, IComparable
{
public override int Compare(Nullable x, Nullable y) {
if (x.HasValue) {
if (y.HasValue) return x.value.CompareTo(y.value);
return 1;
}
if (y.HasValue) return -1;
return 0;
}
// Equals method for the comparer itself.
public override bool Equals(Object obj){
NullableComparer comparer = obj as NullableComparer;
return comparer != null;
}
public override int GetHashCode() {
return this.GetType().Name.GetHashCode();
}
}
[Serializable()]
internal class ObjectComparer : Comparer
{
public override int Compare(T x, T y) {
return System.Collections.Comparer.Default.Compare(x, y);
}
// Equals method for the comparer itself.
public override bool Equals(Object obj){
ObjectComparer comparer = obj as ObjectComparer;
return comparer != null;
}
public override int GetHashCode() {
return this.GetType().Name.GetHashCode();
}
}
}
// 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
- AnnotationComponentChooser.cs
- HttpListenerElement.cs
- ObjectQueryProvider.cs
- ComponentManagerBroker.cs
- AsyncStreamReader.cs
- GeometryModel3D.cs
- ToolStripHighContrastRenderer.cs
- XmlSchemaSimpleTypeUnion.cs
- TextPointer.cs
- dataobject.cs
- Figure.cs
- Point3DCollectionValueSerializer.cs
- altserialization.cs
- TextSchema.cs
- ImageBrush.cs
- MessageBox.cs
- SchemaCollectionPreprocessor.cs
- WmlControlAdapter.cs
- NameValueCollection.cs
- JoinQueryOperator.cs
- WebServiceHost.cs
- JournalNavigationScope.cs
- SqlClientWrapperSmiStream.cs
- EntityProviderServices.cs
- ReadOnlyDictionary.cs
- connectionpool.cs
- TypeBuilderInstantiation.cs
- MemberInfoSerializationHolder.cs
- VariantWrapper.cs
- TextBox.cs
- DataGridViewHeaderCell.cs
- XmlAttribute.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- WorkerRequest.cs
- XmlWrappingWriter.cs
- PageFunction.cs
- AssemblyNameProxy.cs
- BindingCompleteEventArgs.cs
- XNodeNavigator.cs
- ScanQueryOperator.cs
- ReflectionUtil.cs
- PopOutPanel.cs
- RadioButtonBaseAdapter.cs
- WebControlParameterProxy.cs
- ValidationHelper.cs
- MessageSecurityException.cs
- assertwrapper.cs
- VisualBasicReference.cs
- ConfigurationValidatorAttribute.cs
- PropertiesTab.cs
- XmlEventCache.cs
- GridViewItemAutomationPeer.cs
- RefreshPropertiesAttribute.cs
- CheckPair.cs
- RemotingServices.cs
- EntityProviderServices.cs
- PhysicalFontFamily.cs
- CloseCryptoHandleRequest.cs
- WindowsSlider.cs
- ExceptionList.cs
- ContainerParaClient.cs
- OleDbConnection.cs
- CatalogPart.cs
- ToolStripTextBox.cs
- VisualStyleTypesAndProperties.cs
- SharedStatics.cs
- XamlRtfConverter.cs
- SqlParameter.cs
- CodeRemoveEventStatement.cs
- FontSizeConverter.cs
- ParseNumbers.cs
- documentsequencetextpointer.cs
- BufferBuilder.cs
- BooleanExpr.cs
- DataGridViewSelectedCellCollection.cs
- SystemDropShadowChrome.cs
- CompilerScopeManager.cs
- CodeDefaultValueExpression.cs
- TabControlAutomationPeer.cs
- SortQuery.cs
- AspCompat.cs
- WriteableBitmap.cs
- XmlElementAttribute.cs
- Pointer.cs
- ValidatorCollection.cs
- UnknownBitmapEncoder.cs
- DataGridViewComboBoxEditingControl.cs
- LiteralTextParser.cs
- ComplexBindingPropertiesAttribute.cs
- TraceSource.cs
- FormView.cs
- Main.cs
- HtmlInputFile.cs
- FormClosingEvent.cs
- FontFaceLayoutInfo.cs
- SoapFormatter.cs
- MatrixUtil.cs
- CompositeFontInfo.cs
- OleDbFactory.cs
- XmlIncludeAttribute.cs