コード例 #1
0
ファイル: Injector.cs プロジェクト: ChicK00o/suice
 private bool IsValidConstructor(ConstructorInfo constructorInfo)
 {
     return constructorInfo.GetParameters().Length == 0 ||
            constructorInfo.GetMemberInfoAttribute<Inject>() != null;
 }