Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. class A : B {
  2.    
  3.     int aVariable = 1;
  4.  
  5.     public A() {
  6.        
  7.         base();
  8.     }
  9.  
  10.     public string a() {
  11.         return "a";
  12.     }
  13.  
  14.     public static string b() {
  15.         return "b";
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement