Skip to content

Instantly share code, notes, and snippets.

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