如何防止visual studio 2017使用连续字符删除vb代码中的下划线(_)

时间:2018-04-25 20:17:15

标签: .net vb.net visual-studio-2017

我有一个旧的VB.Net项目,我是贡献者,出于兼容性原因,我需要在代码中保留下划线延续字符,但Visual Studio 2017正在删除它们。

例如:

                Cache.Add(
                "cacheErr", _
                objArray, _
                Nothing, _
                Date.Today.AddHours(1), _
                System.Web.Caching.Cache.NoSlidingExpiration, _
                System.Web.Caching.CacheItemPriority.Normal, _
                Nothing)

当我打开文件并更改一些代码时,下划线将被删除,如下所示:

                Cache.Add(
                "cacheErrDispensacion", 
                objArray, 
                Nothing, 
                Date.Today.AddHours(1), 
                System.Web.Caching.Cache.NoSlidingExpiration, 
                System.Web.Caching.CacheItemPriority.Normal, 
                Nothing)

因此,在旧版本的visual studio中无法编译。

我想知道是否存在使用Visual Studio 2017阻止此行为的配置。

0 个答案:

没有答案