using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apuntadores_punteros
{
class Program
static void Main(string[] args)
//variable out
//en vez de:
DateTime fecha;
if (DateTime.TryParse("24-02-2021", out DateTime fecha2))
//parseo correcto
}
else
//Parseo incorrecto
Console.WriteLine(fecha2);
Console.Read();