コード例 #1
0
ファイル: ComponentTester.cs プロジェクト: sillsdev/wesay
 public ComponentTester(ComponentTester tester, int index)
 {
     if (index < 0)
     {
         throw new Exception("Should not have index < 0");
     }
     this.index = index;
     form       = tester.form;
     formName   = tester.formName;
     name       = tester.name;
 }
コード例 #2
0
ファイル: ComponentTester.cs プロジェクト: bbriggs/wesay
		public ComponentTester(ComponentTester tester, int index)
		{
			if(index < 0)
			{
				throw new Exception("Should not have index < 0");
			}
			this.index = index;
			form = tester.form;
			formName = tester.formName;
			name = tester.name;
		}