Dictionarylt;T,Delegategt; with Delegates of different types: Cleaner, non string method names?(字典lt;T,Delegategt;使用不同类型的委托:更简洁的非字符串方法名称?)
问题描述
必须有更清洁的方法.目前我有:
There has to be a cleaner method. Currently I have:
... Constructor()
{
parseDictionary = new Dictionary<typeOfStream, Delegate>()
{
{typeOfStream.SOME_ENUM_VAL, Delegate.CreateDelegate(typeof(ParseDelegate<string>), this, "MyMethod")},
{typeOfStream.SOME_OTHER_ENUM_VAL, Delegate.CreateDelegate(typeof(ParseDelegate<XmlNode>), this, "MyOtherMethod")}
};
}
public bool MyMethod(string some_string)
{
...
}
public bool MyOtherMethod(XmlNode some_node)
{
...
}
我想摆脱 "MyMethod" 和 MyOtherMethod 并使其成为 this.MyMethod 和 this.MyOtherMethod.选项?
and I would like to get rid of "MyMethod" and MyOtherMethod and make it this.MyMethod and this.MyOtherMethod. Options?
我对任何允许我使用字典查找并将我的数据 mojo 指向任意方法(以及带有任意一堆参数的已定义方法)进行解析的解决方案持开放态度.
I am open to any solution that allows me to use a Dictionary lookup, and point my data mojo into an arbitrary method (well a defined method with an arbitrary bunch of arguments) for parsing.
推荐答案
只需投射到正确的委托类型:
Just cast to the right kind of delegate:
parseDictionary = new Dictionary<typeOfStream, Delegate>()
{
{ typeOfStream.SOME_ENUM_VAL, (ParseDelegate<string>) MyMethod) },
{ typeOfStream.SOME_OTHER_ENUM_VAL, (ParseDelegate<XmlNode>) MyOtherMethod }
};
这篇关于字典<T,Delegate>使用不同类型的委托:更简洁的非字符串方法名称?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:字典<T,Delegate>使用不同类型的委托:更简洁的非字符串方法名称?
基础教程推荐
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 获取C#保存对话框的文件路径 2022-01-01
- 将数据集转换为列表 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 如果条件可以为空 2022-01-01
