fork download
  1. Imports System
  2. Imports System.Collections.Generic
  3.  
  4. Public Class Test
  5. Public Shared Sub Main()
  6. Dim x As List(Of Object) = New List(Of Object)()
  7. x.Add(Nothing)
  8. x.Add(Nothing)
  9. System.Console.WriteLine(x.Count)
  10. End Sub
  11. End Class
Success #stdin #stdout 0.08s 13544KB
stdin
Standard input is empty
stdout
2