gpt4 book ai didi

vb.net - 是否可以将命名空间导入 SSRS 自定义代码

转载 作者:行者123 更新时间:2023-12-04 04:50:46 25 4
gpt4 key购买 nike

是否可以导入 System.Xml将命名空间转换为 SSRS 报告?

带进口

当我在报告代码属性中使用导入语句时:

Imports System.Xml

Public Function GetXMLInfo() As String
Dim reader = new XmlReader()
' ....

End Function

我收到以下错误:

The definition of the report '/MyReport' is invalid.
There is an error in line 0 of custom code:
[BC30465] 'Imports' statements must precede any declarations

无进口

但是,当我在代码设置中删除 import 语句时,如下所示:

Public Function GetXMLInfo() As String
Dim reader = new XmlReader()
' ....

End Function

我收到此错误:

The definition of the report '/MyReport' is invalid.
There is an error in line 2 of custom code:
[BC30002] Name 'XmlReader' is not defined

问题 : 如何导入 XmlReader 类进入我的 SSRS 代码?

最佳答案

您可以引用XmlReader通过其完全限定名称(包括命名空间)

所以使用 System.Xml.XmlReader而不是 XmlReader像这样:

Public Function GetXMLInfo() As String
Dim reader = new System.Xml.XmlReader()
' ....

End Function

关于vb.net - 是否可以将命名空间导入 SSRS 自定义代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17469279/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com