当前位置:  开发笔记 > 编程语言 > 正文

基于字符串值在.NET中创建方法调用

如何解决《基于字符串值在.NET中创建方法调用》经验,为你挑选了2个好方法。

现在,我的代码看起来像这样:

Private Sub ShowReport(ByVal reportName As String)
    Select Case reportName
        Case "Security"
            Me.ShowSecurityReport()
        Case "Configuration"
            Me.ShowConfigurationReport()
        Case "RoleUsers"
            Me.ShowRoleUsersReport()
        Case Else
            pnlMessage.Visible = True
            litMessage.Text = "The report name """ + reportName + """ is invalid."
    End Select
End Sub

有没有办法创建使用我的方法命名约定来简化事情的代码?这是一些描述我正在寻找的伪代码:

Private Sub ShowReport(ByVal reportName As String)
    Try
        Call("Show" + reportName + "Report")
    Catch ex As Exception
        'method not found
    End Try
End Sub

Chris Marast.. 18

Type type = GetType();
MethodInfo method = type.GetMethod("Show"+reportName+"Report");
if (method != null)
{
    method.Invoke(this, null);
}

这是C#,应该很容易把它变成VB.如果需要将参数传递给方法,可以将它们添加到Invoke的第二个参数中.



1> Chris Marast..:
Type type = GetType();
MethodInfo method = type.GetMethod("Show"+reportName+"Report");
if (method != null)
{
    method.Invoke(this, null);
}

这是C#,应该很容易把它变成VB.如果需要将参数传递给方法,可以将它们添加到Invoke的第二个参数中.


推选选民:为什么?解决方案有什么问题?

2> Jay Bazuzi..:

你有一个更深层次的问题.你的字符串太重要了.谁在传递你的字符串?你能让他们不这样做吗?

坚持使用switch语句,因为它将您的内部实现(方法名称)与外部视图分离.

假设您将其本地化为德语.你会重命名所有这些方法吗?

推荐阅读
郑小蒜9299_941611_G
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有