Pchp.Library.DateTimeFunctions.StringToTime C# (CSharp) Method

StringToTime() static private method

Implementation of StringToTime(string,int) function.
static private StringToTime ( string time, System.DateTime startUtc ) : int
time string
startUtc System.DateTime
return int
        static int StringToTime(string time, System_DateTime startUtc)
        {
            //if (time == null) return false;
            //time = time.Trim();
            //if (time.Length == 0) return false;

            //string error = null;
            //int result = StrToTime.DateInfo.Parse(time, startUtc, out error);
            //if (error != null)
            //{
            //    PhpException.Throw(PhpError.Warning, error);
            //    return false;
            //}

            //return result;

            throw new NotImplementedException();
        }