fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace PasswordBank
  12. {
  13. public partial class PasswordBankForm : Form
  14. {
  15. public PasswordBankForm()
  16. {
  17. InitializeComponent();
  18. }
  19.  
  20.  
  21. private void showButton_Click(object sender, EventArgs e)
  22. {
  23. if (faceBookPass.UseSystemPasswordChar == true)
  24. {
  25. faceBookPass.UseSystemPasswordChar = false;
  26. }
  27.  
  28. else
  29. {
  30. faceBookPass.UseSystemPasswordChar = true;
  31. Console.WriteLine(faceBookPass.Text);
  32. }
  33. }
  34. }
  35.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cs(34,246): error CS1525: Unexpected symbol `end-of-file'
Compilation failed: 1 error(s), 0 warnings
stdout
Standard output is empty