文字列をパーツ配列に分割し、最後にそれらを結合して結果の文字列にしようとしました。しかし、少しテストしていると、メッセージが表示されます。
convert_click を押すと:
"NullRefenceException was unhandeled"
Object reference not set to an instance of an object.
ここにメインコード:
public string []parts { get; set; }
public string inputStr { get; set; }
private void inputText_TextChanged(object sender, EventArgs e)
{
String inputStr = inputText.ToString();
//example
//inputStr = "984, fenceshit2, 0, 1994.56025813, -1592.16428141, 16.105, 0.653280779782, 0.270598520636, 0.653281646552, 0.270598879665, -1";
}
private void convert_Click(object sender, EventArgs e)
{
String creObj = "CreateObject(";
String result;
String[] parts = inputStr.Split(new char[] { ',' });
result = creObj +
parts[0] + "," +
parts[2] + "," +
parts[3] + "," +
//...up to "parts[10"
");";
outputText.Text = result;
//output(should be in this case):
//"CreateObject(984, 1994.56025813, -1592.16428141, 16.105, 0.653280779782, 0.270598520636, 0.653281646552, 0.270598879665, -1);"
}
//If I need to creat a code line in the main Designer.cs, please let me know.
文字列を分割し、最後にそれらを 1 つの文字列に結合して、これをテキスト ボックスに送信したいだけです。
誰かがソースコードを欲しがっているなら、私に連絡してください。