String.Equals Method (String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Determines whether this instance and another specified String object have the same value.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System.String
The string to compare to this instance.
Return Value
Type: System.Booleantrue if the value of the value parameter is the same as this instance; otherwise, false.
Implements
IEquatable<T>.Equals(T)The following example demonstrates the Equals(String) method.
using System; public class Example { public static void Demo(System.Windows.Controls.TextBlock outputBlock) { string word = "File"; string[] others = { word.ToLower(), word, word.ToUpper(), "fıle" }; foreach (string other in others) { if (word.Equals(other)) outputBlock.Text += String.Format("{0} = {1}", word, other) + "\n"; else outputBlock.Text += String.Format("{0} {1} {2}", word, '\u2260', other) + "\n"; } } } // The example displays the following output: // File ≠ file // File = File // File ≠ FILE // File ≠ fıle
Show: