Using<GetFillupById>().Execute(id);
そのような構文を見たことがありません。使用の定義は次のとおりです。
protected T Using<T>() where T : class
{
var handler = serviceLocator.GetInstance<T>();
if (handler == null)
{
throw new NullReferenceException("Unable to resolve type with service locator; type " + typeof(T).Name);
}
return handler;
}
誰かが正確にこれが何であるかを教えてくれるなら-機能、特性?または私が読むことができるいくつかのリンクを見せてください-私は感謝します