Skip to content

Instantly share code, notes, and snippets.

@profesor79
Created March 10, 2023 06:10
Show Gist options
  • Save profesor79/dd69d0f3a10cfcba575d05055efcbe97 to your computer and use it in GitHub Desktop.
Save profesor79/dd69d0f3a10cfcba575d05055efcbe97 to your computer and use it in GitHub Desktop.
format and reduce interpolation
public void EffectiveCode(string testString)
{
var dt = DateTime.UtcNow;
var period = string.IsNullOrWhiteSpace(testString)
? $"{dt:MMM-yy}"
: $"{dt:MMM-yy} {testString}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment