using System;
namespace ConsoleApplication1
{
public class example
{
static void Main(string[] args)
{
string s = "C# is a very nice programming language", part = null;
try
{
part = s.Substring(0, 8); // from first char 0 copy 8 chars
Console.WriteLine(part);
part = s.Substring(21, 29 - 21); // from char (0 to 21) 22 copy (29 - 21) 8 chars
Console.WriteLine(part);
part = s.Substring(21, 8); // same as above
Console.WriteLine(part);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
/*
run:
C# is a
gramming
gramming
*/