Skip to content

Instantly share code, notes, and snippets.

@BanksySan
Created May 5, 2020 19:24
Show Gist options
  • Save BanksySan/114445493534f0f5387698aae0e566d9 to your computer and use it in GitHub Desktop.
Save BanksySan/114445493534f0f5387698aae0e566d9 to your computer and use it in GitHub Desktop.
Blog: Public Consts Are Bad (4)
using static System.Console;
using System;
public class Constants
{
public const double PI = 3.1415;
}
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