星占いの作成を行っております。
並び替えを行いたいと考え、コンストラクタを使っております。
new Constellationの値の二つを受け取り
その下で並び替えを行うように使っておりますが
値がうまく受け取れていないいようで並び替えがうまく行われません。
どこを変更すればよいでしょうか。
C#
1 private Constellation[] ConstellationList = 2 { 3 new Constellation("07", "牡羊座"), 4 new Constellation("78", "牡牛座"), 5 new Constellation("38", "双子座"), 6 new Constellation("12", "蟹座"), 7 new Constellation("46", "獅子座"), 8 new Constellation("86", "乙女座"), 9 new Constellation("49", "天秤座"), 10 new Constellation("73", "蠍座"), 11 new Constellation("72", "射手座"), 12 new Constellation("16", "山羊座"), 13 new Constellation("04", "水瓶座"), 14 new Constellation("66", "魚座") 15 }; 16 private class Constellation : IComparable<Constellation> 17 { 18 private string hoge { get; set; } 19 20 21 22 } 23 24 25 26 private void Button2_Click(object sender, EventArgs e) 27 { 28 //日付ボックスから日付をyyyyMMdd フォーマットで取得する 29 string dateStr = dateTimePicker1.Value.ToString("yyyyMMdd"); 30 31 //文字列を数値に変換する 32 int dateInt = Convert.ToInt32(dateStr); 33 34 // 再計算する 35 foreach (Constellation constellation in ConstellationList) 36 { 37 constellation.calcResult(dateInt); 38 } 39 40 // 並び替え 41 Array.Sort(ConstellationList); 42 43 // 表示し直す 44 dispResult(dCodeLabel1, dConstellationLabel1, dResultLabel1, ConstellationList[0]); //一行目 45 dispResult(dCodeLabel2, dConstellationLabel2, dResultLabel2, ConstellationList[1]); //二行目 46 dispResult(dCodeLabel3, dConstellationLabel3, dResultLabel3, ConstellationList[2]); //三行目 47 dispResult(dCodeLabel4, dConstellationLabel4, dResultLabel4, ConstellationList[3]); //四行目 48 dispResult(dCodeLabel5, dConstellationLabel5, eResultLabel5, ConstellationList[4]); //五行目 49 dispResult(dCodeLabel6, dConstellationLabel6, dResultLabel6, ConstellationList[5]); //六行目 50 dispResult(dCodeLabel7, dConstellationLabel7, dResultLabel7, ConstellationList[6]); //七行目 51 dispResult(dCodeLabel8, dConstellationLabel8, dResultLabel8, ConstellationList[7]); //八行目 52 dispResult(dCodeLabel9, dConstellationLabel9, dResultLabel9, ConstellationList[8]); // 九行目 53 dispResult(dCodeLabel10, dConstellationLabel10, dResultLabel10, ConstellationList[9]); //十行目 54 dispResult(dCodeLabel11, dConstellationLabel11, dResultLabel11, ConstellationList[10]); //十一行目 55 dispResult(dCodeLabel12, dConstellationLabel12, dResultLabel12, ConstellationList[11]); //十二行目 56 } 57 58 59 // 各行に再表示するメソッド 60 private void dispResult(Label codeLabel, Label constellationLabel, Label resultLabel, Constellation constellation) 61 { 62 codeLabel.Text = constellation.Code; 63 constellationLabel.Text = constellation.Name; 64 resultLabel.Text = constellation.ResultStr; 65
使用しいるフレームワークは、
.NET Framewok4.7.2 です。
回答1件
あなたの回答
tips
プレビュー