Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created January 6, 2019 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carloscds/6d0b6b286dbad055eac9d72f4d4a4d2f to your computer and use it in GitHub Desktop.
Save carloscds/6d0b6b286dbad055eac9d72f4d4a4d2f to your computer and use it in GitHub Desktop.
static void Main(string[] args)
{
string str = "Exemplo em C# 8";
foreach(var s in str[^4..str.Length])
{
Console.Write(s);
}
Console.WriteLine("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment