C# UInt32 Equals(Object)
Description
UInt32 Equals(Object)
returns a value indicating whether
this instance is equal to a specified object.
Syntax
UInt32.Equals(Object)
has the following syntax.
public override bool Equals(
Object obj
)
Parameters
UInt32.Equals(Object)
has the following parameters.
obj
- An object to compare with this instance.
Returns
UInt32.Equals(Object)
method returns true if obj is an instance of UInt32 and equals the value of this instance;
otherwise, false.
Example
using System;// ww w. j a v a 2s . co m
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt32.MinValue.Equals((Object)123));
}
}
The code above generates the following result.