c# remove first 5 characters from string

C#
str = str.Substring(n); //Where n is the number of characters you want to remove
Source

Also in C#: