- using System;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- string nameFull = "code";
- string LastChar = nameFull.Substring(nameFull.Length - 1, 1);
- Console.WriteLine("Last character :" + LastChar);
- }
- }
- }
- Output: e