using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CodeKata.Katas { /// /// FizzBuzz. /// /// /// Return "fizz", "buzz" or "fizzbuzz". /// /// For a given natural number greater zero return /// "fizz" if the number is dividable by 3 /// "buzz" if the number is dividable by 5 /// "fizzbuzz" if the number is dividable by 15 /// public class FizzBuzz { /// /// Runs the specified natural number. /// /// The natural number. /// Returns the FizzBuzz value. public static string Run(int naturalNumber) { return string.Empty; } } }