コード例 #1
0
ファイル: arrayinstantiation.cs プロジェクト: fotisp/conqat
 public void caller()
 {
     Target[] x = new Target[4];
 }
コード例 #2
0
ファイル: rectangulararray.cs プロジェクト: fotisp/conqat
 public void MyMethod()
 {
     Target[,] a = new Target[2,3];
 }
コード例 #3
0
ファイル: methodParameterType.cs プロジェクト: fotisp/conqat
 public void SomeMethod(Target callee)
 {
 }
コード例 #4
0
ファイル: twodimensionalarray.cs プロジェクト: fotisp/conqat
 public void MyMethod()
 {
     Target[][] a = new Target[2][];
 }
コード例 #5
0
ファイル: constructor.cs プロジェクト: fotisp/conqat
 public void Method()
 {
     Object o = new Target();
 }
コード例 #6
0
ファイル: simplearray.cs プロジェクト: fotisp/conqat
 public void MyMethod()
 {
     Target[] a = new Target[3];
 }
コード例 #7
0
ファイル: methodparameter.cs プロジェクト: fotisp/conqat
 public void caller(Target callee)
 {
 }