Aqueduct.Extensions.Inflector.ConvertUnderscoresToDashes C# (CSharp) Method

ConvertUnderscoresToDashes() public static method

Converts the underscores to dashes.
public static ConvertUnderscoresToDashes ( this underscoredWord ) : string
underscoredWord this The underscored word.
return string
        public static string ConvertUnderscoresToDashes(this string underscoredWord)
        {
            return underscoredWord.Replace('_', '-');
        }