Created
June 6, 2021 13:41
-
-
Save rstropek/06cb291efaf510a1641627901e2300cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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