在 c# 中有一个包含许多字符串和整数的大对象。例如:
object.something.something = "somestring";
object.something2.something = "somestring2";
我还有一个 int 表示对象中的一个元素。例如:
object.something.1 = "the content of number 1";
object.something.2 = "the content of number 2";
object.something.3 = "the content of number 3";
object.something.4 = "the content of number 4";
等等...
如果我有一个包含数字的变量,例如
int number = 3;
我需要用它来找到 object.something.3
相关分类