2017-10-19 20:04:20 +00:00
|
|
|
// CS1026: Unexpected symbol `;', expecting `)' or `,'
|
2014-08-13 10:39:27 +01:00
|
|
|
// Line: 10
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
class Test {
|
|
|
|
static void Main ()
|
|
|
|
{
|
|
|
|
string uri = "http://localhost/";
|
|
|
|
int default_port = (uri.StartsWith ("http://") ? 80 : -1;
|
|
|
|
}
|
|
|
|
}
|