Skip to content

Instantly share code, notes, and snippets.

@BanksySan
Created May 5, 2020 19:17
Show Gist options
  • Save BanksySan/7e89fd0f94c113d52a07de063f0ded48 to your computer and use it in GitHub Desktop.
Save BanksySan/7e89fd0f94c113d52a07de063f0ded48 to your computer and use it in GitHub Desktop.
Blog: Public Consts Are Bad (2)
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