gpt4 book ai didi

resources - 使用带参数的资源文件

转载 作者:行者123 更新时间:2023-12-02 01:21:33 26 4
gpt4 key购买 nike

我的问题是关于 c# 中的资源文件 (.resx)。(“字符串”部分)我用它来存储我的消息,我想知道我们如何使用带有参数的资源条目的“值”?!

示例:

名称:显示单元格值值:单元格上的值:?和行:?是:?

我想填写“?”具有不同值的参数。

谢谢,

最佳答案

您可以对存储在资源文件中的字符串使用 string.Format。

将 ShowCellValue 存储为

string showCellValue = "value on cell {0} and row {1} is {2}";

然后当你想使用它时,只需使用ResourceManager即可:

ResourceManager rm = new ResourceManager("resource root name", 
Assembly.GetExecutingAssembly());
MessageBox.Show(string.Format(rm.GetString("showCellValue"),
cellName, rowName, cellValue);

关于resources - 使用带参数的资源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3537159/

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