Advertisement
Guest User

Untitled

a guest
Jan 10th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Testing
  4. {
  5.     public class test
  6.     {
  7.         private int intTest;
  8.         private SomeClass classTest;
  9.  
  10.         public int IntTest
  11.         {
  12.             get { return this.intTest; }
  13.             set { this.intTest = value; }
  14.         }
  15.  
  16.         public SomeClass ClassTest
  17.         {
  18.             get { return this.classTest; }
  19.             set { this.classTest = value; }
  20.         }
  21.  
  22.         public test(int intTest, SomeClass classTest)
  23.         {
  24.             this.intTest = intTest;
  25.             this.classTest = classTest;
  26.         }
  27.  
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement