gpt4 book ai didi

c# - 将组合框中的特定字符/数字/文本传递给 C# 中的变量

转载 作者:行者123 更新时间:2023-11-29 16:15:23 25 4
gpt4 key购买 nike

我的组合框中有以下项目:<1、5至9、10至15、16至25、30至40、40至45。我想将索引 1 中的值传递给值“5”的变量 intage 和值“9”的变量 intage2(不包括单词“to”)我如何获取值并将其传递给我的变量而不包含字符串“to”

最佳答案

这一定有效::

if (this.cmbAge.Text != "")
{
int age = 0, age1 = 0;

string[] strAge = this.cmbAge.Text.Split(new string[] { "to" }, StringSplitOptions.None);

age = Convert.ToInt32(strAge[0]);
if (strAge.Length == 2)
age1 = Convert.ToInt32(strAge[1]);

MessageBox.Show("Age = " + age + "\r\nAge1 = " + age1);
}

输出::enter image description here

关于c# - 将组合框中的特定字符/数字/文本传递给 C# 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54853571/

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