public void Main() { Stanza mStanza = new Stanza(); string foglio = "Stanze"; mStanza = Stanza.ParseStanza(Config.FoglioStanza, 1); }
private void Client_Load(object sender, EventArgs e) { Stanza provaStanza = new Stanza(); //provaStanza = Stanza.ParseStanza(Config.FoglioStanza, "Salone"); provaStanza.NuovaStanza(1, 1); richTextBox1.AppendText(provaStanza.Nome + "\n" + provaStanza.Descrizione); }
public static void Main() { Client frmProva = new Client(); //frmProva.CreateControl(); frmProva.Visible = true; Stanza provaStanza = new Stanza(); //provaStanza = Stanza.ParseStanza(Config.FoglioStanza, "Salone"); provaStanza.NuovaStanza(1, 1); //string prova = frmProva.ActiveControl.Controls.Text; }
public static void getValues(int Charlie, out int x, out int y, out int z) { Console.WriteLine("Enter the first value: "); x = Convert.ToInt32(Console.ReadLine()) * Charlie; Console.WriteLine("Enter the second value: "); y = Convert.ToInt32(Console.ReadLine()) * Charlie; Console.WriteLine("Enter the third value: "); z = Convert.ToInt32(Console.ReadLine()) * Charlie; var stanza = new Stanza(id: 1, nome: string.Empty, descrizione: string.Empty, oggetti: string.Empty, person: string.Empty, special: string.Empty); var altraStanza = new Stanza { ID = 1, Nome = string.Empty, Descrizione = string.Empty, Oggetti = null, }; }