Skip to content

Instantly share code, notes, and snippets.

@mcsee
Created April 22, 2024 16:16
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 mcsee/8af320b9550e7a7f4884df45820d7478 to your computer and use it in GitHub Desktop.
Save mcsee/8af320b9550e7a7f4884df45820d7478 to your computer and use it in GitHub Desktop.
public const string FORMAT_JPG = "JPG";
public const string FORMAT_GIF = "GIF";
public const string FORMAT_PNG = "PNG";
// OR
public enum ImageFormat
{
JPG,
GIF,
PNG
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment