9

您发现哪些宏在 Visual Studio 中对代码操作和自动化很有用?

4

5 回答 5

9

这是我关闭解决方案、删除智能感知文件并重新打开解决方案的宏。如果您使用本机 C++ 工作,则必不可少。

Sub UpdateIntellisense()
    Dim solution As Solution = DTE.Solution
    Dim filename As String = solution.FullName
    Dim ncbFile As System.Text.StringBuilder = New System.Text.StringBuilder
    ncbFile.Append(System.IO.Path.GetDirectoryName(filename) + "\")
    ncbFile.Append(System.IO.Path.GetFileNameWithoutExtension(filename))
    ncbFile.Append(".ncb")
    solution.Close(True)
    System.IO.File.Delete(ncbFile.ToString())
    solution.Open(filename)
End Sub
于 2008-08-28T17:41:12.390 回答
5

这是我在 HTML 和 XML 文件上使用的方便的工具之一:

''''replaceunicodechars.vb
Option Strict Off
Option Explicit Off
Imports EnvDTE
Imports System.Diagnostics

Public Module ReplaceUnicodeChars

    Sub ReplaceUnicodeChars()
        DTE.ExecuteCommand("Edit.Find")
        ReplaceAllChar(ChrW(8230), "…")   ' ellipses
        ReplaceAllChar(ChrW(8220), "“")   ' left double quote
        ReplaceAllChar(ChrW(8221), "”")   ' right double quote
        ReplaceAllChar(ChrW(8216), "‘")   ' left single quote
        ReplaceAllChar(ChrW(8217), "’")   ' right single quote
        ReplaceAllChar(ChrW(8211), "–")   ' en dash
        ReplaceAllChar(ChrW(8212), "—")   ' em dash
        ReplaceAllChar(ChrW(176), "°") ' °
        ReplaceAllChar(ChrW(188), "¼") ' ¼
        ReplaceAllChar(ChrW(189), "½") ' ½
        ReplaceAllChar(ChrW(169), "©") ' ©
        ReplaceAllChar(ChrW(174), "®") ' ®
        ReplaceAllChar(ChrW(8224), "†")   ' dagger
        ReplaceAllChar(ChrW(8225), "‡")   ' double-dagger
        ReplaceAllChar(ChrW(185), "¹") ' ¹
        ReplaceAllChar(ChrW(178), "²") ' ²
        ReplaceAllChar(ChrW(179), "³") ' ³
        ReplaceAllChar(ChrW(153), "™")   ' ™
        ''ReplaceAllChar(ChrW(0), "�")

        DTE.Windows.Item(Constants.vsWindowKindFindReplace).Close()
    End Sub

    Sub ReplaceAllChar(ByVal findWhat, ByVal replaceWith)
        DTE.Find.FindWhat = findWhat
        DTE.Find.ReplaceWith = replaceWith
        DTE.Find.Target = vsFindTarget.vsFindTargetCurrentDocument
        DTE.Find.MatchCase = False
        DTE.Find.MatchWholeWord = False
        DTE.Find.MatchInHiddenText = True
        DTE.Find.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxLiteral
        DTE.Find.ResultsLocation = vsFindResultsLocation.vsFindResultsNone
        DTE.Find.Action = vsFindAction.vsFindActionReplaceAll
        DTE.Find.Execute()
    End Sub

End Module

当您必须进行任何类型的数据输入并想要一次转义所有内容时,它很有用。

于 2008-08-18T19:27:01.330 回答
1

这是我创建的一个,它允许您轻松更改解决方案中所有项目的目标框架版本:http: //geekswithblogs.net/sdorman/archive/2008/07/18/visual-studio-2008-and-targetframeworkversion。 aspx

于 2008-08-28T17:23:48.720 回答
1

我正在使用Jean-Paul BoodhooBDD 宏。它在方法签名的标题行中用下划线替换空格字符。这样我可以输入测试用例的名称,例如,作为普通句子,点击键盘快捷键,我有有效的方法签名。

于 2008-08-28T17:29:45.303 回答
0

您可能还想添加代码片段,它们有助于加快开发时间并提高生产力。

标准 VB 代码片段随默认安装一起提供。C# 代码片段必须单独下载和添加。(以下链接为那些)

就宏而言,我通常没有使用过任何宏,但使用 Visual Studio 2005 的书里面有一些相当不错的宏。

C# 代码片段链接: http: //www.codinghorror.com/blog/files/ms-csharp-snippets.7z.zip (Jeff Atwood 提供了链接)HIH

于 2008-08-18T19:23:52.990 回答