示例#1
0
 public void GenericImplicitImplementationClosure2PostNegative()
 {
   IGenericInterface<string> j = new GenericImplicitImpl<string>();
   string[] x = new string[] { "abcd", "defg" };
   j.WithClosureObject(x, false);
 }
示例#2
0
 public void GenericImplicitImplementationPostNegative()
 {
   IGenericInterface<string> j = new GenericImplicitImpl<string>();
   j.M("abcd", false);
 }
示例#3
0
 public void GenericImplicitImplementationClosurePostPositive()
 {
   IGenericInterface<string> j = new GenericImplicitImpl<string>();
   string[] x = new string[] { "abcd", "defg" };
   j.WithStaticClosure(x, true);
 }
示例#4
0
 public void GenericImplicitImplementationPreNegative()
 {
   IGenericInterface<string> j = new GenericImplicitImpl<string>();
   j.M(null, true);
 }