Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created June 14, 2021 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/62ab19f6f22e5a91cf31944d944b2f40 to your computer and use it in GitHub Desktop.
Save lgolubyev/62ab19f6f22e5a91cf31944d944b2f40 to your computer and use it in GitHub Desktop.
using System;
namespace ConstantTestLIB
{
Public class Class01
{
Public static readonly double readonlyPI = 3.14;
Public const double constantPI = 3.14;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment