Could someone help me out converting this code to VB.Net? Thanks in advance...
Code:protected bool IsComplete(string reply) { string[] parts = reply.Replace("\r\n", "\n").Split('\n'); if (parts.Length > 1 && ((parts[parts.Length - 2].Length > 3 && parts[parts.Length - 2].Substring(3, 1).Equals(" ")) || (parts[parts.Length - 2].Length == 3))) return true; Else return false; }




Reply With Quote