gpt4 book ai didi

c# - 为什么我不能在公共(public)静态字符串上使用串联

转载 作者:行者123 更新时间:2023-11-30 13:57:33 24 4
gpt4 key购买 nike

仅供引用,我花了大约 30 分钟寻找答案。如果我在 stackoverflow 上错过了它,我很抱歉。这似乎是一个简单的答案,但我的同事都不知道。

我正在使用现有的图书馆。我试图保持与当前系统的集成,同时增加更改一些硬编码值的能力。我重构了代码以利用 ConfigurationManager,因此我可以使用参数化 Web 部署。

我的问题是……为什么当我访问 Constants.CourseMillRegisterURL 时,我只取回了变量的一部分?我得到的部分是从 web.config 中读取的部分。我希望得到一个包含两个变量的完整 URL,但我只得到我的 web.config 值“userlogin.jsp”。

我也尝试过对其进行编码,以便在私有(private)中连接值,但它也不会那样工作。我真的很想继续使用 static,因为整个库都使用像

这样的代码来引用这个类
string theUrl = Constants.CoursMillUrl + Constants.CourseMillRegisterUrl

每个变量返回以下内容:

为什么我的值(value)观不对

我的代码如下。

namespace STTI.CourseMill.Library
{
#region

using System.Configuration;

#endregion

public static class Constants
{
// prod

#region Static Fields

public static string CourseMillRegisterURL = CourseMillURL + courseMillRegisterURL;

public static string CourseMillURL = courseMillURL;

public static string CourseMillUserLoginURL = CourseMillURL + courseMillUserLoginURL;

#endregion

#region Properties

private static string courseMillRegisterURL
{
get
{
string output = ConfigurationManager.AppSettings["CourseMillRegisterUrl"];
if (output == null)
{
output = "sttilogin.jsp?d=t";
}

return output;
}
}

private static string courseMillURL
{
get
{
string output = ConfigurationManager.AppSettings["CourseMillURL"];
if (output == null)
{
output = "http://hardcodedvalue/cm6/cm0670";
}

if (!output.EndsWith("/"))
{
output += "/";
}

return output;
}
}

private static string courseMillUserLoginURL
{
get
{
string output = ConfigurationManager.AppSettings["CourseMillLoginUrl"];
if (output == null)
{
output = "sttilogin.jsp?d=t";
}

return output;
}
}

#endregion
}
}

最佳答案

静态字符串按照它们在文件中出现的顺序进行初始化。

例如,

courseMillRegisterURLCourseMillRegisterURL 之后初始化。

这就是您的字符串不完整的原因。

关于c# - 为什么我不能在公共(public)静态字符串上使用串联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20636198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com