Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created June 9, 2016 14:14
Show Gist options
  • Save masaru-b-cl/8d0ce7734c8beb29ea9a87201889abc8 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/8d0ce7734c8beb29ea9a87201889abc8 to your computer and use it in GitHub Desktop.
replace literal value
using System;
namespace FizzBuzz
{
public class FizzBuzzer
{
public FizzBuzzer()
{
}
public string Say(int number)
{
return $"{number}";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment