Hallo, folgende Integerwerte möchte ich in einer Klasse haben:
Diese Werte sollen nicht in Form1.cs stehen, jedoch verfügbar sein.
Ich hoffe Ihr könnt mir weiterhelfen.
Form1.cs :
testklasse.cs :
Code:
int zahl1=0;
int zahl2=0;
int ergebnis;
Diese Werte sollen nicht in Form1.cs stehen, jedoch verfügbar sein.
Ich hoffe Ihr könnt mir weiterhelfen.
Form1.cs :
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
int zahl1=0;
int zahl2=0;
int ergebnis;
try
{
zahl1 = Convert.ToInt16(richTextBox1.Text);
zahl2 = Convert.ToInt16(richTextBox2.Text);
ergebnis = zahl1 + zahl2;
label1.Text = ergebnis.ToString();
}
catch { }
}
private void button2_Click(object sender, EventArgs e)
{
int zahl1 = 0;
int zahl2 = 0;
int ergebnis;
try
{
zahl1 = Convert.ToInt16(richTextBox1.Text);
zahl2 = Convert.ToInt16(richTextBox2.Text);
ergebnis = zahl2 - zahl1;
label1.Text = ergebnis.ToString();
}
catch { }
}
private void button3_Click(object sender, EventArgs e)
{
richTextBox1.Text = "";
richTextBox2.Text = "";
}
}
}
testklasse.cs :
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsFormsApplication1
{
class testklasse
{
}
}