Files
Examples/C#/Just Testing/IRCClient/IRCClient/Form1.cs
2018-05-11 19:50:25 +01:00

18 lines
358 B
C#

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 IRCClient {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
}
}