21 lines
391 B
C#
Raw Normal View History

2021-09-21 20:07:08 +12: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 Tutorial_5
{
public partial class ForecastDisplay : Form
{
public ForecastDisplay()
{
InitializeComponent();
}
}
}