babaOlya

Results 1 comments of babaOlya

I think to change the function StripComments to: private static bool StripComments(ref string input) { var isSurroundedByComments = input.StartsWith("(") && input.EndsWith(")"); if(isSurroundedByComments){ input = input.Trim('(', ')'); } return isSurroundedByComments; }