Skip to content

Instantly share code, notes, and snippets.

@rstropek
Created June 6, 2021 13:41
Show Gist options
  • Save rstropek/06cb291efaf510a1641627901e2300cc to your computer and use it in GitHub Desktop.
Save rstropek/06cb291efaf510a1641627901e2300cc to your computer and use it in GitHub Desktop.
using System;
const string s1 = $"abc";
const string s2 = $"{s1}edf";
Console.WriteLine(s2);
DoSomething_Old(42);
DoSomething_VeryOld(42);
[Obsolete($"Use {nameof(DoSomething_New)} instead")]
void DoSomething_Old(int x) { }
void DoSomething_VeryOld(int x)
{
throw new InvalidOperationException($"{nameof(DoSomething_VeryOld)} is no longer supported");
}
void DoSomething_New(int x) { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment