2007/04/12(Thu) 15:21:20 編集(投稿者)
じゃコード例。
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
// Button button1;
// TextBox textBox1; [input] single-line
// TextBox textBox2; [output] multi-line
private void button1_Click(object sender, EventArgs e)
{
Twice t = textBox1.Text.Length > 0 ? new Twice(textBox1.Text) : new Twice();
textBox2.Lines = t.Make();
}
}
class Twice {
private string text = "Hello, World!";
public Twice() {}
public Twice(string t) { text = t; }
public static string[] Make(string source) {
return new string[] { source, source };
}
public string[] Make() { return Make(text); }
}
> もうここへは来ません。
> 私の低級な発言のせいでいろんな方に不快な思いをさせてしまってすみませんでした。
その捨て台詞は無礼だ。
「俺がいちばん不快だ」と言ってるに等しいから(そのつもりがなくても)。
質問自体に低級もなにもないのよ。
マズかったのはあなたの対応。
解決に導くために必要な僕の質問に最後まで答えなかったでしょ。