Sample for String.Equals(Object), String.Equals(String), String.Equals(String, String) : String Compare « String « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » String » String Compare 
5.10.12.Sample for String.Equals(Object), String.Equals(String), String.Equals(String, String)
using System;
using System.Text;

class Sample {
    public static void Main() {
        StringBuilder sb = new StringBuilder("abcd");
        String      str1 = "abcd";
        String      str2 = null;
        Object    o2   = null;
    
        Console.WriteLine("String.Equals(Object). Object is a StringBuilder, not a String.");
        Console.WriteLine("Is str1 equal to sb?: {0}", str1.Equals(sb));
    
        Console.WriteLine("String.Equals(Object). Object is a String.");
        str2 = sb.ToString();
        o2   = str2;
        Console.WriteLine("The value of Object o2 is '{0}'.", o2);
        Console.WriteLine("Is str1 equal to o2?: {0}", str1.Equals(o2));
    
        Console.WriteLine("String.Equals(String)");
        Console.WriteLine("The value of String str2 is '{0}'.", str2);
        Console.WriteLine("Is str1 equal to str2?: {0}", str1.Equals(str2));
    
        Console.WriteLine("String.Equals(String, String)");
        Console.WriteLine("Is str1 equal to str2?: {0}", String.Equals(str1, str2));
    }
}
5.10.String Compare
5.10.1.String comparisons: ignore case
5.10.2.Use '==' to compare two string objects
5.10.3.Compare for equal
5.10.4.Compare string: equal, less than or greater than
5.10.5.If two string are equal
5.10.6.Compare string case sensitively
5.10.7.Compare string with start index and end index
5.10.8.Compare string with String.Compare(string str1, strng str2)
5.10.9.Compare strings using StringComparison enumeration: InvariantCulture
5.10.10.String Interning
5.10.11.String equality
5.10.12.Sample for String.Equals(Object), String.Equals(String), String.Equals(String, String)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.