Substring demo : String : Data Types C# Source Code


Custom Search

C# Source Code » Data Types » String »

 

Substring demo









    

/*
 * C# Programmers Pocket Consultant
 * Author: Gregory S. MacBeth
 * Email: gmacbeth@comporium.net
 * Create Date: June 27, 2003
 * Last Modified Date:
 */
using System;

namespace Client.Chapter_6___Strings
{
  public class Substrings
  {
    static void Main(string[] args)
    {
      string[] FootballTeams = new string[3] {
        "Miami, Dolphins", "Oakland, Raiders", "Seattle, Seahawks"
      };

      foreach (string s in FootballTeams)
      {
        if (s.StartsWith("Miami"))
          Console.WriteLine("Awesome!");
        else
          Console.WriteLine("Bummer Dude!");
      }
    }
  }
}
           
       
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Data Types
» String