- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在我的应用程序中,我试图将日期和时间与日期时间字段分开,以便我可以在日期上放置一个 jQuery 日期选择器。我找到了 Hanselman's code for splitting the DateTime ,但是我在 bindingContext.ValueProvider.TryGetValue(modelName, out valueResult);
上遇到编译错误。我得到的错误是:
Error 3 'System.Web.Mvc.IValueProvider' does not contain a definition for 'TryGetValue' and no extension method 'TryGetValue' accepting a first argument of type 'System.Web.Mvc.IValueProvider' could be found (are you missing a using directive or an assembly reference?) C:\Documents and Settings\xxx\My Documents\Visual Studio 2008\Projects\MyProject\Project\Helpers\DateAndTimeModelBinder.cs 83 42 Project
我错过了什么?我创建了一个新类,并将他的代码放在我项目的 Helpers 文件夹中。
最佳答案
TryGetValue()
不是 System.Web.Mvc.IValueProvider
的成员.
我怀疑他有一个自定义扩展,看起来像这样:
public static bool TryGetValue(this IValueProvider valueProvider, string key, out ValueProviderResult result) {
try {
result = valueProvider.GetValue(key);
return true;
}
catch {
result = null;
return false;
}
}
更新
TryGetValue()
不是扩展方法,而是 IDictionary <T,U>
类型的方法. bindingContext.ValueProvider
的类型如@mootinator 所示,自 MVC1 以来已发生变化。您可以忽略对 TryGetValue()
的调用。而是调用 GetValue()
并检查结果是否为空。我不确定它是否会抛出异常,因为我还没有测试过它,所以先试试吧。
关于c# - ValueProvider 不包含 TryGetValue 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4149805/
我在 F# 中的字典上使用 TryGetValue,它返回一个对象 bool * Dictionary 我已经用谷歌搜索了几个小时,但是我如何访问这个对象的 bool 组件,以便我可以检查它是否返回了
所以,我有一个 Dictionary Foo 在一个线程中我有: void Thread1() { ... if (!Foo.TryGetValue(key, out v)) { Fo
我正在尝试从字典中获取值(JSON 反序列化)并将其解析为 long。 当我快速查看变量时,我发现没有“M”作为下面给出的输出参数的一部分 但是当我点击这个值时,我发现“M”被添加到给定的值中 这里的
我有一个字典,它将字符串映射到这样的对象:Dictionary myDic; 我事先知道对象的类型是基于字符串的,但我的问题是我应该使用 TryGetValue,还是使用 try、catch 语句直接
将以下代码用于展览 A: string sql; if (!GetQueries.TryGetValue(type.TypeHandle, out sql)) Dictionary 的文档说如果找不到
TryGetValue 是否改变输入参数? 在使用 TryGetValue 时,我倾向于这样做: Dictionary myDic; long lValue = -1; long lTemp1; if
private Dictionary> events = new Dictionary>(); internal Bag GetEventList() where T:class { Ty
我完全是个 C# 菜鸟,无法弄清楚为什么相同的方法以不同的方式工作。我正在制作一个简单的电子表格应用程序,并使用单元格字典,其中键是字符串名称,值是 Cell 对象: public struct Ce
我环顾四周,看到很多关于修改 GetHashCode() 的引用资料和玩ContainsKey()的东西和 TryGetValue() - 但所有这些问题和示例都与一些晦涩的用户特定 key 有关。
我正在编写一个需要优化的计算量大的应用程序(NLP 机器学习任务)。 因为我的代码有很多 for 循环,所以我使用了 Parallel.For(和变体)来并行化最外层的循环。我还使用数组和 Dicti
我有这个简单的例子: using System; using System.Collections.Generic; namespace ConsoleApplication1 { class
private object lockObj = new object(); private Dictionary dict = new Dictionary(); public string Get
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我正在努力 myDic.TryGetValue("用户名", out user.用户名); 但它不起作用。 这不可能吗? 最佳答案 不,来自文档: “属性不是变量,因此不能作为输出参数传递。” htt
我分析了我的应用程序并运行了一些性能测试,这让我相信以下 if-lock-if 安排: private float GetValue(int id) { float value; if
此代码有效,但效率低下,因为它会重复查找 ignored字典。如何使用字典TryGetValue() LINQ 语句中的方法使其更高效? IDictionary records = ... IDict
所以,给定下面的代码 type MyClass () = let items = Dictionary() do items.Add ("one",1) items.Add (
我有一个类型的字典 Dictionary 尝试从中读取值时,我无法使用这种方式 if (myDict.TryGetValue(1, out (float tupleItem1, float tuple
我有以下ConcurrentDictionary: ConcurrentDictionary sessions; 我知道 sessions.TryGetValue(key, out session)
我不能在匿名类型的 linq 表达式中使用字典中的 TryGetValue()。 Dictionary dict = new Dictionary() { {"1", "one
我是一名优秀的程序员,十分优秀!