예제 #1
0
파일: TestTang.cs 프로젝트: beysims/reef
 public OneNamedSingletonArgs([Parameter(typeof(A))] MustBeSingleton a)
 {
 }
예제 #2
0
파일: TestTang.cs 프로젝트: beysims/reef
 private TwoSingletons(SubSingleton a, MustBeSingleton b)
 {
 }
예제 #3
0
파일: TestTang.cs 프로젝트: beysims/reef
 public RepeatedNamedSingletonArgs([Parameter(typeof(A))] MustBeSingleton a,
                                   [Parameter(typeof(B))] MustBeSingleton b)
 {
 }
예제 #4
0
파일: TestTang.cs 프로젝트: beysims/reef
 private SubSingleton(MustBeSingleton a)
 {
     // Does not call super
 }