gpt4 book ai didi

c# - 如何在 Visual Studio 中围绕等号反转代码?

转载 作者:IT王子 更新时间:2023-10-29 04:17:33 24 4
gpt4 key购买 nike

编写代码从对象填充文本框后,例如:

txtFirstName.Text = customer.FirstName;
txtLastName.Text = customer.LastName;
txtAddress.Text = customer.Address;
txtCity.Text = customer.City;

在 Visual Studio(或什至像 Resharper 之类的东西)中有没有办法将此代码复制并粘贴到保存函数中并反转等号周围的代码,这样它看起来像:

customer.FirstName = txtFirstName.Text;
customer.LastName = txtLastName.Text;
customer.Address = txtAddress.Text;
customer.City = txtCity.Text;

最佳答案

VS2012 之前:

  • 复制并粘贴原始代码块
  • 在要切换的地方重新选择
  • 按 Ctrl-H 调出“替换”框
  • 在“查找内容”下输入:{[a-zA-Z\.]*} = {[a-zA-Z\.]*};
  • 在“替换为”下输入:\2 =\1;
  • 查看:“选择”
  • 使用:“正则表达式”
  • 点击全部替换

对于使用 .NET 正则表达式的 VS2012(大概以后):

  • 复制并粘贴原始代码块
  • 在要切换的地方重新选择
  • 按 Ctrl-H 调出“替换”框
  • 在“查找内容”下输入:([a-zA-Z\.]*) = ([a-zA-Z\.]*);
  • 在“替换为”下输入:${2} = ${1};
  • 确保选择了 .*(正则表达式)图标(替换文本框下方的第三个图标)
  • 点击全部替换

关于c# - 如何在 Visual Studio 中围绕等号反转代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/430145/

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