Returning an array of culture formatted dates C# MVC3
- by user1875797
I'm new to programming and trying to do an exercise that formats a date to the Thai culture in a variety of formats this is what I have for my code so far:
public String[] FormatAsSpecified(DateTime theDate, String theCulture, String[] formats)
{
String[] dateResults = new String[formats.Length];
CultureInfo culture =…