Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. public ContentManager Content
  2. {
  3.     get
  4.     {
  5.         return this.content;
  6.     }
  7.     set
  8.     {
  9.         if (value == null)
  10.         {
  11.             throw new ArgumentNullException();
  12.         }
  13.         this.content = value;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement