C# dll 反编译后 批量替换 get_func()、set_func(xxx) 方法。
正则匹配
.get_([A-Za-z0-9]*)\(\)
.$1
\.set_([A-Za-z0-9]*)\((.*)\) .$1=$2