- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的开发团队正准备开始一个新项目。自 VB3 时代以来,该商店一直是“VB 商店”,但现在流行的观点是我们是“.NET 商店”,并且由于 C# 是专门为 .NET 创建的,而 VB.NET 是一种改造,我们我决定继续只编写 C#。争议围绕着 Microsoft.VisualBasic 命名空间在新开发中是否具有合法地位,或者它是否仅用于向后兼容 VB6(及更早版本)代码的问题展开。另一个更有趣的问题是 Microsoft.VisualBasic 命名空间“下”的代码是否是 .NET 代码,如果它真的是旧的 VB 运行时,小心地打包在 .NET 包装器中,使其实际上成为 COM 互操作控件(类似于 WinForms 包装非 .NET Win32 窗口 API 但仅公开 .NET API 以供使用的方式)。
更令人困惑的是,我们的开发团队有一位 Microsoft 咨询服务顾问告诉我们 Microsoft 不再支持 Visual Basic,包括 Microsoft.VisualBasic 命名空间下的 VB 运行时。
我正在寻找的是链接——最好是无懈可击的微软资源——指向以某种方式明确回答这个问题的文档。我已经在 Google 上尝试了几种搜索排列,但没有进一步深入了解这个问题。
编辑:显然我没有说清楚我的问题。我不是在问 VB.NET 是否是真正的 .NET 代码。我正在尝试确定 Microsoft.VisualBasic 命名空间“之下”的内容是否是 .NET 代码,或者它是否是经过精心打包并作为 .NET 代码公开的旧 VB6 运行时。有人已经说过,命名空间的 9/10 只是包装了 .NET 中其他地方的代码;那另外的 1/10 呢?
最佳答案
Microsoft.VisualBasic.dll <> Microsoft.VisualBasic.Compatibility.dll!!!
(或者,如果您愿意,Microsoft.VisualBasic.dll != Microsoft.VisualBasic.Compatibility.dll;)
Microsoft.VisualBasic.Compatibility 命名空间专供 VB6 升级向导使用,可能会在未来版本中删除,并且永远不应用于新开发。
Microsoft.VisualBasic 命名空间绝对是 100% 真正的 .Net,完全受支持,只要 .Net 存在,它就会存在。
一些相关链接:
编辑:添加来自 this MSDN article 的官方词:
The Visual Basic Runtime provides the underlying implementation for global Visual Basic functions and language features such as Len, IsDate, and CStr. And though the new Visual Basic Runtime provides similar facilities as its predecessors, it is entirely managed code (developed in Visual Basic .NET) that executes on the common language runtime. Furthermore, the Visual Basic Runtime is part of the .NET Framework, so it is never something separate that your application has to carry or deploy.
和
The Visual Basic 6.0 Compatibility library is distinct from the Visual Basic Runtime. The Microsoft.VisualBasic.Compatibility namespace is used by the tools that upgrade Visual Basic 6.0 code to Visual Basic .NET. It is a bridge to support Visual Basic 6 features that are not directly supported by the .NET implementation of Visual Basic. Unlike the Visual Basic Runtime, the compatibility library is not implicitly referenced by all Visual Basic .NET applications. When you upgrade a Visual Basic 6 project to Visual Basic .NET, the upgrade wizard adds a reference to Microsoft.VisualBasic.Compatibility.
The compatibility classes should not be used for new development. The Microsoft.VisualBasic.Compatibility namespace adds a layer of complexity to your Visual Basic .NET application and introduces some minimal performance costs that could be eliminated by recoding portions of the application. In addition, the Compatibility namespace often contains many classes that wrap COM objects, and as stated earlier, depending on COM objects is not as optimal as a pure managed implementation.
关于.net - Microsoft.VisualBasic 命名空间是 "true .NET"代码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65006596/
这个问题在这里已经有了答案: Why in Python does "0, 0 == (0, 0)" equal "(0, False)"? (7 个回答) 去年关闭。 代码片段 1: a = Tru
Integer i = 127; Integer j = 127; System.out.println(i == j); System.out.println(i.equals(j)); Integ
我试图用 Python 进行类似下面的代码的比较,但对产生的输出感到困惑。 谁能解释为什么输出是这样的? >>> True, True == True, True (True, True, True)
我们的下拉值是动态的 010100。 你能帮我将这些值转换为 true、false 吗? Offer的值是10100,Reject的值是10111。所以这些需要转换成 10100 = true,fal
我正在测试,如果用户在页面顶部显示一种货币“EUR”和另一种货币“GBP”,那么我期望包含文本“EUR”和页面下方还存在另一个包含文本“GBP”的链接。它包含在一个名为 "nav-tabs au-ta
如何检查数组的所有元素是真值还是假值。 因为以下内容似乎没有做到这一点:_.all([true, true, true], true); 它返回:false? 最佳答案 您应该重新阅读_.every(
C#:我有一个如下所示的字符串变量: string a = "(true and true) or (true or false)"; 这可以是任何东西,它可以变得更复杂,比如: string b
ruby : true == true == true syntax error, unexpected tEQ 对比JavaScript: true == true == true // => tr
这个问题已经有答案了: Equality of truthy and falsy values (JavaScript) (3 个回答) Which equals operator (== vs ==
为什么 R 中的 TRUE == "TRUE" 是 TRUE? R 中是否有与 === 等效的内容? 更新: 这些都返回FALSE: TRUE == "True" TRUE == "true" TRU
简单的查询,可能不可能,但我知道那里有一些聪明的人:) 给定一个 bool 参数,我希望定义我的 where 子句来限制特定列的输出 - 或不执行任何操作。 因此,给定参数@bit = 1,结果将是:
编写 Excel 公式时,将值设置为 true、“true”还是 true() 是否有区别? 换句话来说,以下哪一个是最好的?还是要看具体情况? if (A1 = 1, true, false) if
如果我们评估这个:TRUE AND TRUE,为什么会这样? 'yes' : 'no' 等于 TRUE 但不等于 yes 何时评估:(TRUE AND TRUE) ? 'yes' : 'no' 等于
这个问题在这里已经有了答案: Behaviour of and operator in javascript [duplicate] (1 个回答) 关闭 7 年前。 如题所说,我不太明白为什么(t
我有一个包含 FromDate 、 ToDate 、 VendorName 和 GoodsName 的表单,一旦一切为真,我需要显示结果 示例: FromDate="11/20/2019"、ToDat
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
我有一个模型,我有: ipv4_address = models.IPAddressField(verbose_name=_('ipv4 address'), blank=True, null=Tru
False in [True,True] False in pd.Series([True,True]) 第一行代码返回False第二行代码返回 True! 我想我一定是做错了什么或者遗漏了什么。当我
我可以在 Coq 中证明以下内容吗? Lemma bool_uip (H1 : true = true): H1 = eq_refl true. 即true = true 的所有证明都相同吗? 例如
如果我的理解是正确的,他们做的事情完全一样。为什么有人会使用“for”变体?仅仅是味道吗? 编辑:我想我也在考虑 for (;;)。 最佳答案 for (;;) 通常用于防止编译器警告: while(
我是一名优秀的程序员,十分优秀!