
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
Check if two String objects have the same value in C#
To check if two String objects have the same value, the code is as follows −
Example
using System; public class Demo { public static void Main(String[] args){ string str1 = "John"; string str2 = "John"; Console.WriteLine("String 1 = "+str1); Console.WriteLine("String 2 = "+str2); Console.WriteLine("String 1 is equal to String 2: {0}", str1.Equals(str2)); } }
Output
This will produce the following output −
String 1 = John String 2 = John String 1 is equal to String 2: True
Example
Let us see another example −
using System; public class Demo { public static void Main(String[] args){ string str1 = "Tom"; string str2 = "Kevin"; Console.WriteLine("String 1 = "+str1); Console.WriteLine("String 2 = "+str2); Console.WriteLine("String 1 is equal to String 2: {0}", str1.Equals(str2)); } }
Output
This will produce the following output −
String 1 = Tom String 2 = Kevin String 1 is equal to String 2: False
- Related Articles
- Fastest Method to Check If Two Files Have Same Contents
- Check if both halves of the string have same set of characters in Python
- Check if both halves of the string have same set of characters in C#
- Check if both halves of the string have the same set of characters in Python
- Python program to check if both halves of the string have same set of characters.
- Check if two SortedSet objects are equal in C#
- Check if two BitArray objects are equal in C#
- Check if two ArrayList objects are equal in C#
- Check if two HashSet objects are equal in C#
- Check if two HybridDictionary objects are equal in C#
- Check if two LinkedList objects are equal in C#
- Check if two StringBuilder objects are Equal in C#
- Check if two Tuple Objects are equal in C#
- Check if two StringCollection objects are equal in C#
- Check if two OrderedDictionary objects are equal in C#

Advertisements