DHaromszog/haromszogek/Form1.cs

28 lines
576 B
C#
Raw Normal View History

2024-01-04 11:57:00 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace haromszogek
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
DHaromszog elso = new DHaromszog("asd", 1);
elso.a = 34;
Console.WriteLine(elso.a);
}
}
}