次のようないくつかのC#コード:
Array arr=Array.CreateInstance(typeof(oject),3);
bool b=true;
int i =2;
float[] foo={1.1f,2.2f};
arr.setValue(b,0);
arr.setValue(i,0);
arr.setValue(foo,0);
string str=GetParamStringFromArrayObject(arr.GetValue(3));
string GetParamStringFromArrayObject(object obj)
{
if(obj.GetType().IsArray)
{
int demesion=obj.GetType().GetRank();//error,how to get the demesion(should be 2)
return obj.ToString();//error,i want to return the string delimeter by ' ' of the float array,how to do?
}
}
上記のコードのように、値が配列であるオブジェクトから文字列が必要な場合、どうすればそれを取得できますか、また配列オブジェクトの定義を取得する方法は?
どうもありがとう。