コード例 #1
0
ファイル: Form1.cs プロジェクト: HeberAlvarez/HeadFirst
 private void loadJoe_Click(object sender, EventArgs e)
 {
     using (Stream input = File.OpenRead("Guy_File.dat"))
     {
         BinaryFormatter formatter = new BinaryFormatter();
         joe = (Guy)formatter.Deserialize(input);
     }
     UpdateForm();
 }
コード例 #2
0
ファイル: Form1.cs プロジェクト: HeberAlvarez/HeadFirst
        public Form1()
        {
            InitializeComponent();

            bob = new Guy() { Cash = 100, Name = "Bob" };
            joe = new Guy() { Cash = 50, Name = "Joe" };

            UpdateForm();
        }