将 VB.NET 转换为 C# 时出现问题

发布于 2024-11-28 06:23:58 字数 603 浏览 1 评论 0原文

我正在尝试将一些 vb.net 转换为 C#,但我不断收到错误。目前,我收到以下错误:

The name 'Strings' does not exist in the current context

问题是:

strUser = Strings.LCase(Strings.Trim(strUserInitials[strUserInitials.GetUpperBound(0)])).ToString();

有人知道为什么会发生这种情况吗?

我设置了以下命名空间:

using System;
using System.Web;
using System.Web.Services;
using System.Web.Script;
using System.Web.Script.Services;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;

我正在开发一个 Web 服务(asmx 文件)。

I am trying to convert some vb.net to C#, but I keep getting errors. At the moment, I am getting the following error:

The name 'Strings' does not exist in the current context

The problem line is:

strUser = Strings.LCase(Strings.Trim(strUserInitials[strUserInitials.GetUpperBound(0)])).ToString();

Anyone know why this is happening?

I have the following namespaces set:

using System;
using System.Web;
using System.Web.Services;
using System.Web.Script;
using System.Web.Script.Services;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;

I am working on a webservice (asmx file).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

琉璃梦幻 2024-12-05 06:23:58

Strings 实用程序类位于 Microsoft.VisualBasic 命名空间中。

您可以添加对该库的引用并从 C# 代码中使用它,或者重写调用:

strUser = strUserInitials[strUserInitials.GetUpperBound(0)].ToString().Trim().ToLower();

The Strings utility class is in the Microsoft.VisualBasic namespace.

You can add a reference to the library and use it from your C# code, or rewrite the calls:

strUser = strUserInitials[strUserInitials.GetUpperBound(0)].ToString().Trim().ToLower();
柒夜笙歌凉 2024-12-05 06:23:58

在 C# 中,System 命名空间中没有 Strings 类。并在 string 中将 LCase 更改为 ToLower,所以:

strUser = string.ToLower(string.Trim(strUserInitials[strUserInitials.GetUpperBound(0)]));

In c# there is no Strings class in System namespace. and in the string change LCase to ToLower, So:

strUser = string.ToLower(string.Trim(strUserInitials[strUserInitials.GetUpperBound(0)]));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文