Chapter 12. Processing Strings
Strings are as ubiquitous in C# as they are in Java, so it's important for Java programmers to understand the concept of string processing in C#. The System.String class of C# models String objects just as the java.lang.String class of Java does, but this doesn't mean that C# and Java have a similar interface. Let's explore the string operations in C# to see how they differ from those in Java.
|