我正在尝试匹配
EchoCancellation = Convert.ToBoolean(SendReceivePackets.GetNameValuePairsFromUnparsedReply(parsedReply["EchoCancellation"]));
并将其更改为:
EchoCancellation = Convert.ToBoolean(parsedReply["EchoCancellation"]);
其中大约有3000个。
这是我的正则表达式:
SendReceivePackets\.GetNameValuePairsFromUnparsedReply\(parsedReply\["{\w*}"\]\)
Visual Studio 说找不到。我不相信 Visual Studio,我认为它只是懒惰。:)
任何人都可以看到问题吗?