Save() 공개 정적인 메소드

public static Save ( ) : void
리턴 void
        private void button2_Click(object sender, EventArgs e)
        {
            SaveProto();
            ProtoManager.SaveProtoAs(this.pc, this.pc.Id);
            if (this.parent != null)
            {
                parent.RefreshList();
            }
            else
            {
                ProtoManager.Save();
            }

            this.Close();
        }
예제 #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     ProtoManager.Save();
     this.Close();
 }