从一些旧的 VB 代码中复制 C# 中的函数以对电子邮件文本执行字符串操作。我不确定这是否适用于所有情况...有人可以确认我对要使用的正确 C# 代码的想法吗?这些是等价的吗?
原版VB:
function FixText(Mail_Text)
dim Clean_Text
Clean_Text = Mail_Text
Clean_Text = Replace(Clean_Text, "=" & vbcrlf, "")
Clean_Text = Replace(Clean_Text, ";" & vblrcf, "")
` ... other stuff
FixText = Clean_Text
End Function
新的 C#:
public String FixText(Mail_Text)
{
String Clean_Text = Mail_Text;
Clean_Text = Clean_Text.Replace("=" + System.Environment.NewLine, "");
Clean_Text = Clean_Text.Replace(";" + System.Environment.NewLine, "");
// ... other stuff
return Clean_Text;
}