以下のプログラムで別クラスの変数xを受け取り、引数として別クラスに渡したいのですが、どのような処理が必要でしょうか?
ご指導ご鞭撻の程よろしくお願い致します。
public partial class Form1 : Form
{
public float a ; // textboxの値を取ってきます
public float b ; // textboxの値を取ってきます
public void keisan() { Test.test(a,b) } public void save_bt_Click(object sender, EventArgs e) { Save.save ( x ); // クラス「Test」内の変数、x を受け取り、引数で渡したい }
}
public partial class Test
{
public float x;
public static void test ( float a, float b ) { Test t = new Test(); t.x = a + b; }
}
public class Save
{
public static void save( float x)
{
StreamWriter sw = new System.IO.StreamWriter(
@"C:\data\file",
true,
System.Text.Encoding.GetEncoding("shift_jis")
);
sw.WriteLine(String.Format("C {0}", x); }
}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2015/10/15 02:30
2015/10/15 04:17
2015/10/15 04:58
2015/10/16 08:32
2015/10/20 05:29