现在,我的代码看起来像这样:
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的第二个参数中.
Type type = GetType(); MethodInfo method = type.GetMethod("Show"+reportName+"Report"); if (method != null) { method.Invoke(this, null); }
这是C#,应该很容易把它变成VB.如果需要将参数传递给方法,可以将它们添加到Invoke的第二个参数中.
你有一个更深层次的问题.你的字符串太重要了.谁在传递你的字符串?你能让他们不这样做吗?
坚持使用switch语句,因为它将您的内部实现(方法名称)与外部视图分离.
假设您将其本地化为德语.你会重命名所有这些方法吗?