问题:从WSDLs ReportService2005和ReportExecution生成的两个类具有一些重叠的类定义,如ParameterValue,DataSourceCredentials,ReportParameter.
在C#中,是否有一种说法,“对于方法中的这个代码块,使用这个命名空间?”
伪/主要构建错误代码:
use-this-namespace (ReportService2005){ ParameterValue[] values = null; DataSourceCredentials[] credentials = null; ReportParameter[] parameters;}
我明白我可以写出全名,ReportService2005.ParameterValue [] values = null.或者我可以在我的类/控制器声明之前将顶部的两个类别别名.这只是我很好奇的东西.
解决方法 像其他人一样,我不认为这是可能的.但是你可以做的是将所有的命名空间代替,而不是每个你想使用的类,例如:using rs = ReportService2005;using re = ReportExecution;// ...rs.ParameterValue[] values = null;rs.DataSourceCredentials[] credentials = null;rs.ReportParameter[] parameters;re.ParameterValue v2 = ...;总结
以上是内存溢出为你收集整理的C#:为特定的代码块使用命名空间?全部内容,希望文章能够帮你解决C#:为特定的代码块使用命名空间?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)