c#equals方法源码_C#中的Int32.Equals()方法示例
生活随笔
收集整理的這篇文章主要介紹了
c#equals方法源码_C#中的Int32.Equals()方法示例
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
c#equals方法源碼
Int32.Equals()方法 (Int32.Equals() Method)
This method is used to compare two integer objects and returns boolean values either true or false.
此方法用于比較兩個整數對象,并返回布爾值true或false。
Syntax:
句法:
bool int.equals(int objA, int objB);Parameter(s):
參數:
int objA, int objB – are used to represent two integer objects to be compared.
int objA,int objB –用于表示要比較的兩個整數對象。
Return value:
返回值:
bool – it returns "true" if both objects are equal, else it returns "false".
bool-如果兩個對象相等,則返回“ true”,否則返回“ false”。
C#中的Int32.Equals()方法示例 (Int32.Equals() Method Example in C#)
using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace ConsoleApplication1 {class Program{static void Main(string[] args){int a = 0;int b = 0;Console.Write("Enter A: ");a = Convert.ToInt32(Console.ReadLine());Console.Write("Enter B: ");b = Convert.ToInt32(Console.ReadLine());if (int.Equals(a, b) == true){Console.WriteLine("Both are equal");}else{Console.WriteLine("Both are not equal");}}} }Output
輸出量
Enter A: 10 Enter B: 15 Both are not equalEnter A: 10 Enter B: 10 Both are equal翻譯自: https://www.includehelp.com/dot-net/int32-equals-method-with-example-in-csharp.aspx
c#equals方法源碼
總結
以上是生活随笔為你收集整理的c#equals方法源码_C#中的Int32.Equals()方法示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 互联网传真 传真指令_传真的完整形式是什
- 下一篇: mcq 队列_MCQ | 8086微处理