Advertisement
wingman007

OOPPrinciplesStatic1aStudent

Mar 18th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.92 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace World1a
  8. {
  9.     class Student : Person
  10.     {
  11.         public int FNumber { get; set; }
  12.  
  13.         // protected string name;
  14.  
  15.         // public static string nationality = "Bulgarian";
  16.  
  17.         public Student(string name, int age, int fNumber)
  18.             :base(name, age)
  19.         {
  20.             FNumber = fNumber;
  21.         }
  22.  
  23.         public override void IntroduceYourSelf()
  24.         {
  25.             // Console.WriteLine("My name is {0}. I am {1} years old! My balne is {2}. My nationality is {3}. FNumber = {4}", name, age, Balance, nationality, FNumber);
  26.             Console.WriteLine("-------------------------");
  27.             base.IntroduceYourSelf();
  28.             Console.WriteLine("FNumber = {0}", FNumber);
  29.             Console.WriteLine("-------------------------");
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement