BLL.Extensor.ToDate C# (CSharp) Method

ToDate() public static method

public static ToDate ( this str ) : System.DateTime
str this
return System.DateTime
        public static DateTime ToDate(this string str) {
            return DateTime.Parse(str);
        }