- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- /* Substring in Chsarp Example */
- string name = "Forget code";
- string subName = name.Substring(3);
- Console.WriteLine(subName);
- }
- }
- }
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.RegularExpressions;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- /* Substring in Chsarp Example */
- string name = "Forget code";
- string subName = name.Substring(3,8);
- Console.WriteLine(subName);
- }
- }
- }