gpt4 book ai didi

c# - 如何使用 C# 缩进区域内容?

转载 作者:可可西里 更新时间:2023-11-01 07:56:49 24 4
gpt4 key购买 nike

我真的很想让 VS2008 自动缩进一个区域的内容。一个样本可能是最好的。

现在做什么:

#region [ Fields ]
public int Count;
public int Total;
#endregion

我想要的是:

#region [ Fields ]
public int Count;
public int Total;
#endregion

如何让 VS 执行此操作?

编辑:对于它的值(value),VS 确实在 VB.NET 中做到了这一点。

最佳答案

在大多数情况下,这个宏应该可以工作:

Public Sub IndentRegions()
'Assume that the document has been smart formatted
Dim TS As TextSelection = DTE.ActiveDocument.Selection
TS.SelectAll()
Dim lines As String() = TS.Text.Split(vbNewLine)

Dim level As Integer = 0

TS.StartOfDocument()

While Not TS.ActivePoint.AtEndOfDocument

If lines(TS.ActivePoint.Line - 1).Trim().StartsWith("#endregion") Then
level = level - 1
End If

For i = 1 To level
TS.Indent()
Next

If lines(TS.ActivePoint.Line - 1).Trim().StartsWith("#region") Then
level = level + 1
End If

TS.LineDown()
TS.StartOfLine()
End While
End Sub

关于c# - 如何使用 C# 缩进区域内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1480025/

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