私はWindowsコンソールアプリケーションで簡単な電話帳プログラムを作ろうとしています。私はSortedDictionaryを使用しています。ここでは、Keyは名前でValueは数値、Listはアドレス、StringDictionaryはemail-idです。私はこれらのすべてをDirectoryという名前のクラスに入れ、Mainのインスタンスを通してそれを呼び出しました。私はディレクトリを列挙する際に問題に直面しています。同じ行の人物の4つのエントリーをすべて印刷したいのですが。誰が私にどのように進むべきか教えてもらえますか?電話帳の例
public class Directry
{
List <string> Email_id= new List <string>();
SortedDictionary<string, int> Dict = new SortedDictionary<string, int>();
StringCollection Adress=new StringCollection();
public Directry(SortedDictionary<string, int> dict, StringCollection adress, List<string> email)
{
this.Dict = dict;
this.Email_id = email;
this.Adress = adress;
}
}
class Another
{
static void Main(string[] args)
{
SortedDictionary<string, int> dict = new SortedDictionary<string, int>();
List<string> email = new List<string>();
StringCollection adres = new StringCollection();
Directry dir = new Directry(dict, adres,email);
string key, adress, Email;
int numbr;
start_again:
for (int i = 0; i <2; i++)
{
Console.WriteLine("enter name to be added in the directory");
key = Console.ReadLine();
Console.WriteLine("enter number to be added in the directory");
numbr = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter address to be added in the directory");
adress = Console.ReadLine();
Console.WriteLine("enter your email-id to be added in the directory");
Email = Console.ReadLine();
dict.Add(key, numbr);
email.Add(Email);
adres.Add(adress);
}
Console.WriteLine("do you wish to continue-y/n?");
char c = Convert.ToChar(Console.ReadLine());
if (c == 'y')
{
Console.WriteLine("you said yes");
goto start_again;
}
else
{
Console.WriteLine("no more entries can be added");
Console.WriteLine("Name Number adress email");
foreach (object ot in dir)
{
Console.WriteLine(ot);
}
}
Console.ReadLine();
}
}
感謝 - :これは私がtrying.I不便のための私のlogic..Sorryで多くのミスがあることを十分に確信していた方法です。その様子によって
のようなものが、このコードはコンパイルん持つことができますか? – nik0lias
それは私にforeachの声明の問題を与える!!残りは上品です.. !! – Batrickparry