Объясните как исправить программу ! Особенно меня беспокоит баг с Console - C#
Формулировка задачи:
Листинг программы
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Globalization;
- using System.IO;
- namespace ContactManager
- {
- class Validator
- {
- string[] dateStrings = {"05/01/2009 14:57:32.8", "2009-05-01 14:57:32.8",
- "2009-05-01T14:57:32.8375298-04:00", "5/01/2008",
- "5/01/2008 14:57:32.80 -07:00",
- "1 May 2008 2:57:32.8 PM", "16-05-2009 1:00:32 PM",
- "Fri, 15 May 2009 20:10:57 GMT" };
- DateTime dateValue;
- Console.WriteLine("Attempting to parse strings using {0} culture.",
- CultureInfo.CurrentCulture.Name);
- foreach (string dateString in dateStrings)
- {
- if (DateTime.TryParse(dateString, out dateValue))
- Console.WriteLine(" Converted '{0}' to {1} ({2}).", dateString,
- dateValue, dateValue.Kind);
- else
- Console.WriteLine(" Unable to parse '{0}'.", dateString);
- }
- }
Решение задачи: «Объясните как исправить программу ! Особенно меня беспокоит баг с Console»
textual
Листинг программы
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Globalization;
- using System.IO;
- namespace ContactManager
- {
- class Validator
- {
- static void Main()
- {
- string[] dateStrings = {"05/01/2009 14:57:32.8", "2009-05-01 14:57:32.8",
- "2009-05-01T14:57:32.8375298-04:00", "5/01/2008",
- "5/01/2008 14:57:32.80 -07:00",
- "1 May 2008 2:57:32.8 PM", "16-05-2009 1:00:32 PM",
- "Fri, 15 May 2009 20:10:57 GMT" };
- DateTime dateValue;
- Console.WriteLine("Attempting to parse strings using {0} culture.",
- CultureInfo.CurrentCulture.Name);
- foreach (string dateString in dateStrings)
- {
- if (DateTime.TryParse(dateString, out dateValue))
- Console.WriteLine(" Converted '{0}' to {1} ({2}).", dateString,
- dateValue, dateValue.Kind);
- else
- Console.WriteLine(" Unable to parse '{0}'.", dateString);
- }
- }
- }
- }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д