Version
Features
- Change name of functions.
Features
- Add functionality to Transform Greeklish to Greek.
This static service is used to implement the functionality of transformation from each language.
This function Returns you the Greek string of Greeklish value.
GreekToGreeklish(string source, bool firstLetterUpper)
Explanation of Parameters
- source = The source string that you want to convert.
- firstLetterUpper = [NULL] The boolean that indicates if you want the first letter in Upper Case.
Example
var expected = LanguageTransform.LanguageTransform.GreekToGreeklish("Αντώνης", true);
//Assert
Assert.AreEqual(expected, "Antonis");