Behaviors.InfrastructureParser.Parse C# (CSharp) Method

Parse() public method

public Parse ( string date ) : System.DateTime
date string
return System.DateTime
        public DateTime Parse(string date)
        {
            // Parse with DateTime.Parse.
              return new DateTime(2009, 1, 21);
        }
InfrastructureParser