DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Equals() Method To Compare Values
Equals method to compare values
int price = 100;
int amount = 1000
if (price.Equals(amount))
{
Console.WriteLine("Price is equal to amount");
}
else
{
Console.WriteLine("Price is not equal to amount");
}





