コード例 #1
0
 public IconAdapter(IconImplementor implementor)
 {
     if (implementor == null)
     {
         throw new ArgumentNullException("implementor");
     }
     Implementor = implementor;
 }
コード例 #2
0
ファイル: IconAdapter.cs プロジェクト: Yetangitu/f-spot
		public IconAdapter (IconImplementor implementor)
		{
			if (implementor == null)
				throw new ArgumentNullException ("implementor");
			this.implementor = implementor;
		}