2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-37.cs
blobb326a0dd6d666ea3b0bf12cb8f4634a0c7bb0080
1 // CS0019: Operator `==' cannot be applied to operands of type `bool' and `int'
2 // Line: 10
4 class C
6 static bool HasSessionId (string path)
8 if (path == null || path.Length < 5)
9 return false;
11 return path.StartsWith ("/(") == 0;