System.util.Properties.ContinueLine C# (CSharp) Method

ContinueLine() private method

private ContinueLine ( String line ) : bool
line String
return bool
        private bool ContinueLine(String line)
        {
            int slashCount = 0;
            int index = line.Length - 1;
            while ((index >= 0) && (line[index--] == '\\'))
                slashCount++;
            return (slashCount % 2 == 1);
        }