我想將一些vb.net轉換爲C#,但我不斷收到錯誤。目前,我收到以下錯誤:將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文件)。