DisplayedDataクラスがあります...
public class DisplayedData
{
private int _key;
private String _username;
private String _fullName;
private string _activated;
private string _suspended;
public int key { get { return _key; } set { _key = value; } }
public string username { get { return _username; } set { _username = value; } }
public string fullname { get { return _fullName; } set { _fullName = value; } }
public string activated { get { return _activated; } set { _activated = value; } }
public string suspended { get { return _suspended; } set { _suspended = value; } }
}
そして、このクラスのオブジェクトを配列に入れて、このクラス内のすべてのオブジェクトをString[]に変換したいと思います。
私は持っています..
DisplayedData _user = new DisplayedData();
String[] _chosenUser = _user. /* Im stuck here :)
または、内部のすべての項目が異なるデータ型の変数で構成されている配列を作成して、整数が整数のままで、文字列も維持できるようにすることはできますか?