0
string hello = "hello";
for (int i = 0; i < 2; i++)
{
CheckBox ch = new CheckBox(this);
ch.SetText(hello);
layout.AddView(ch);
}
私はxamarin androidでこれを行うことはできませんでした。 ch.SetText(hello); 私は文字列をcharに変換できません。エラーxamarin android
を使用し、エラーを取得しています – Joagwa
あなたはどのようなエラーが出るのですか?あなたは私たちが何かを推測することを期待していますか? – perror