Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道的很愚蠢的问题,
我想知道是否有一种方法可以将特定颜色分配给我在 .cs 文件中选择的方法。
所以我什至不会不小心去那里写或改变任何东西。
不,Visual Studio 本身不支持这种行为(尽管有人可以编写一个扩展来做到这一点)。
一些想法,虽然...
我的第一个建议是使用版本控制,以便可以查看和还原您所做的任何更改。
我的第二个问题是,在 C# 中,您可以使用分部类将所有不应更改的代码保存在一个文件中,而您可以更改的代码保存在另一个文件中。您甚至可以更进一步,在您不想更改的文件上设置只读标志(尽管检查这如何影响您的源代码控制系统)。
但无论哪种方式都使用版本控制。