fork download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. ' your code goes here
  6. Public Shared ReadOnly mbkEuroTypesByTld As New Dictionary(Of String, Of String)From {
  7. {".com", "valid"}
  8. }
  9.  
  10. Console.WriteLine(mbkEuroTypesByTld.Item(".com"))
  11. mbkEuroTypesByTld.Item("no")
  12. End Sub
  13. End Class
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Visual Basic.Net Compiler version 0.0.0.5943 (Mono 3.8 - tarball)
Copyright (C) 2004-2010 Rolf Bjarne Kvinge. All rights reserved.

/home/0RtiGB/prog.vb (6,16) : error VBNC90019: Expected 'End'.
/home/0RtiGB/prog.vb (10,10) : error VBNC90019: Expected 'End'.
/home/0RtiGB/prog.vb (11,20) : error VBNC30203: Identifier expected.
/home/0RtiGB/prog.vb (12,9) : error VBNC30203: Identifier expected.
/home/0RtiGB/prog.vb (13,10) : error VBNC30203: Identifier expected.
There were 5 errors and 0 warnings.
Compilation took 00:00:00.6388250
stdout
Standard output is empty