CNSA-212-Personal/Chapter 5/Form1.cs

20 lines
369 B
C#
Raw Normal View History

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