enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. C# String Methods - Programiz

    www.programiz.com/csharp-programming/library/string

    A C# String is a class; it provides various methods to perform different operations on strings. On this reference page, you will find all the popular string methods available in C#. For example, the String compare() method allows us to compare two strings in sort order.

  3. C# String (With Examples) - Programiz

    www.programiz.com/csharp-programming/string

    In C#, a string is a sequence of characters. In this tutorial, we will learn about C# string and its methods with the help of examples.

  4. C# String Format() (With Examples) - Programiz

    www.programiz.com/csharp-programming/library/string/format

    The Format() method returns a formatted string based on the argument passed. In this tutorial, we will learn about the C# String.Format() method with the help of examples.

  5. Java String Methods - Programiz

    www.programiz.com/java-programming/library/string

    Java has a lot of String methods that allow us to work with strings. In this reference page, you will find all the string methods available in Java. For example, if you need to find the length of a string, use the length() method.

  6. C# Expressions, Statements and Blocks (With Examples) - Programiz

    www.programiz.com/csharp-programming/expressions-statements-blocks

    An expression in C# is a combination of operands (variables, literals, method calls) and operators that can be evaluated to a single value. To be precise, an expression must have at least one operand but may not have any operator.

  7. C# regex (With Examples) - Programiz

    www.programiz.com/csharp-programming/regex

    A Regex (Regular Expression) is a pattern that is used to check whether a given string matches that pattern. For example, // a regex pattern "^m.t$" The above pattern indicates a three-letter string where, ^ - indicates string starts with m. - indicates any one letter or character $ - indicates string ends with t

  8. C# Lambda Expression (With Examples) - Programiz

    www.programiz.com/csharp-programming/lambda-expression

    C# Lambda Expressions are short blocks of code that accept parameters and return a value. In this tutorial, you will learn about the C# Lambda Expression with the help of examples.

  9. C# Access Modifiers (With Examples) - Programiz

    www.programiz.com/csharp-programming/access-modifiers

    In C#, access modifiers specify the accessibility of types (classes, interfaces, etc) and type members (fields, methods, etc). For example, class Student { public string name; private int num; }

  10. C# Variables and (Primitive) Data Types - Programiz

    www.programiz.com/csharp-programming/variables-primitive-data-types

    In this tutorial, we will learn about variables, how to create variables in C# and different data types that C# programming language supports.

  11. C# Collections (With Examples) - Programiz

    www.programiz.com/csharp-programming/collections

    Types of C# Collection Classes. In C# collections are divided into 3 classes. They are: System.Collections.Generic; System.Collections; System.Collections.Concurrent; Let's learn about each class in more detail!