fork download
  1. Public Class Human
  2.  
  3. 'Data Members
  4.  
  5. Private Name As String
  6.  
  7. Private Birthdate As String
  8.  
  9. Private Gender As String
  10.  
  11. Private Age As Integer
  12.  
  13.  
  14. 'Methods
  15.  
  16. Overridable Sub ShowInfo( )
  17.  
  18. MessageBox.Show(Name)
  19.  
  20. MessageBox.Show(Birthdate)
  21.  
  22. MessageBox.Show(Gender)
  23.  
  24. MessageBox.Show(Age)
  25.  
  26. End Sub
  27.  
  28. End Class
  29.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Visual Basic.Net Compiler version 0.0.0.5914 (Mono 2.4.2 - r)
Copyright (C) 2004-2008 Rolf Bjarne Kvinge. All rights reserved.


/home/RecyBi/prog.vb (18,12) : Error VBNC30451: Could not resolve the name 'MessageBox'
/home/RecyBi/prog.vb (20,12) : Error VBNC30451: Could not resolve the name 'MessageBox'
/home/RecyBi/prog.vb (22,12) : Error VBNC30451: Could not resolve the name 'MessageBox'
/home/RecyBi/prog.vb (24,12) : Error VBNC30451: Could not resolve the name 'MessageBox'
There were 4 errors and 0 warnings.
Compilation took 00:00:00.9139620
stdout
Standard output is empty