Advertisement
PetkoPedev

Program.cs

Feb 13th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. var bankAccount = new BankAccount();
  8. bankAccount.ID = 1;
  9. bankAccount.Balance = 15;
  10.  
  11. Console.WriteLine(bankAccount);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement