C# Class SevenDigital.Kata.Euler.Problems.Problem_017_NumbersToWords.NumbersToWords

ファイルを表示 Open project: antonydenyer/ProgrammingKatas

Public Methods

Method Description
Get ( int number ) : string

There's some code duplication here. There must be recursive way to build up the string recursively by dividing by 10 until you hit something < 100

Method Details

Get() public method

There's some code duplication here. There must be recursive way to build up the string recursively by dividing by 10 until you hit something < 100
public Get ( int number ) : string
number int
return string