CNSA-212-Personal/Chapter6/Form1.cs

20 lines
368 B
C#
Raw Normal View History

2024-02-06 08:22:36 -05: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 Chapter6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}