Skip to content

Instantly share code, notes, and snippets.

@MelbourneDeveloper
Created April 23, 2022 23:50
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 MelbourneDeveloper/92f9caed0c5153728858400e1749a413 to your computer and use it in GitHub Desktop.
Save MelbourneDeveloper/92f9caed0c5153728858400e1749a413 to your computer and use it in GitHub Desktop.
Bad String.Format
using System.Globalization;
namespace CodeRulesExample;
public static class Program
{
public static void Main() =>
Console.WriteLine(string.Format(new CultureInfo("en-US"), "Hello {0}{1}!", "World"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment