1

我将以下函数从 vb.net 转换为 c#,但我无法弄清楚。

错误 4 当前上下文中不存在名称“字符串”

public string GetBetween(string StringText)
    {
        string functionReturnValue = null;

        string TMP = null;
        string FromS = null;
        string ToS = null;
        FromS = "<Modulus>";
        ToS = "</Modulus>";

        TMP = Strings.Mid(StringText, Strings.InStr(StringText, FromS) + Strings.Len(FromS), Strings.Len(StringText));
        TMP = Strings.Left(TMP, Strings.InStr(TMP, ToS) - 1);

        functionReturnValue = TMP;

        return functionReturnValue;

    }
4

2 回答 2

6

Strings是一个 VB.net 类。如果您希望能够使用它,则必须引用Microsoft.VisualBasic.dll程序集并使用命名空间。Microsoft.VisualBasic

如果您尽可能避免使用 VB.net 方法,那就更好了。

public string GetBetween(string str, string start = "<Modulus>", string end = "</Modulus>")
{
    var startIndex = str.IndexOf(start);
    var endIndex = str.LastIndexOf(end);
    if (startIndex == -1 || endIndex == -1 || startIndex > endIndex)
        return str;
    return str.Substring(startIndex + start.Length,
                         str.Length - start.Length - end.Length);
}
于 2012-06-07T03:27:21.147 回答
-1

using Microsoft.VisualBasic;在标题中添加

于 2014-02-26T10:09:45.590 回答