エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
MEFのドキュメントを読んでいたら、メソッドをインジェクション可能(Seasar.NETのメソッドインジェクシ... MEFのドキュメントを読んでいたら、メソッドをインジェクション可能(Seasar.NETのメソッドインジェクションではない)とあったので早速実験君。 using System; using System.Reflection; using System.Linq; using System.Linq.Expressions; using System.ComponentModel.Composition; public class Foo { [Export("Add")] public int Add(int x, int y) { return x + y; } [Export("Sub")] public int Sub(int x, int y) { return x - y; } } public class Bar { [Export("Mul")] public int Mu