本文介绍了获取对象引用未设置为对象的实例。为什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  var  split1 = str.Split( new  [] { ' 〜'' ,'' !'}); 

for int i = 0 ; i < split1.Count(); i + = 3
{
Label [] LabelName = new 标签[split1.Count()];
LabelName [i] .Name = split1 [i] .ToString();
}





 LabelName.Location =  new  Point(Convert.ToInt32(split1 [i +  1 ]),Convert.ToInt32(split1 [i +  2 ]); 
解决方案



var split1 = str.Split(new[] { '~', ',', '!' });

 for (int i = 0; i < split1.Count(); i += 3)
            {
Label[] LabelName = new Label[split1.Count()];
                   LabelName[i].Name = split1[i].ToString();
}



LabelName.Location = new Point(Convert.ToInt32(split1[i + 1]), Convert.ToInt32(split1[i + 2]));
解决方案



这篇关于获取对象引用未设置为对象的实例。为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 02:08