CNSA-212-Personal/Chapter8/Form1.cs

20 lines
368 B
C#
Raw Normal View History

2024-02-12 08:06:51 -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 Chapter8
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}