Created
May 5, 2020 19:17
-
-
Save BanksySan/7e89fd0f94c113d52a07de063f0ded48 to your computer and use it in GitHub Desktop.
Blog: Public Consts Are Bad (2)
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 static System.Console; | |
using System; | |
public class Constants | |
{ | |
public const double PI = Math.PI; | |
} | |
public static class Program | |
{ | |
private static void Main() | |
{ | |
WriteLine($"π = {Constants.PI}"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment