C# UInt16 Equals(Object)

Description

UInt16 Equals(Object) returns a value indicating whether this instance is equal to a specified object.

Syntax

UInt16.Equals(Object) has the following syntax.


public override bool Equals(
  Object obj
)

Parameters

UInt16.Equals(Object) has the following parameters.

  • obj - An object to compare to this instance.

Returns

UInt16.Equals(Object) method returns true if obj is an instance of UInt16 and equals the value of this instance; otherwise, false.

Example


//  w  w w  . j  av  a2 s  . c  om

using System;
public class MainClass{
  public static void Main(String[] argv){  
    System.Console.WriteLine(UInt16.MinValue.Equals((Object)123));
  }
}
    

The code above generates the following result.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version