Skip to content

Instantly share code, notes, and snippets.

@tanakaedu
Created February 7, 2017 06:11
Show Gist options
  • Save tanakaedu/f843c5744c770ed466824a62018a8821 to your computer and use it in GitHub Desktop.
Save tanakaedu/f843c5744c770ed466824a62018a8821 to your computer and use it in GitHub Desktop.
オブジェクトの実装に備えて、機能を全て削除した状態のForm1
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 object_practice_2016
{
public partial class Form1 : Form
{
/** 人の名前*/
private string[] HITO_NAMES = { "佐藤", "鈴木", "高橋" };
/** 鳥の名前*/
private string[] TORI_NAMES = { "スズメ", "カラス", "ハト", "トビ"};
/** 魚の名前*/
private string[] SAKANA_NAMES = { "グッピー", "メダカ"};
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void buttonHello_Click(object sender, EventArgs e)
{
}
private void buttonAction_Click(object sender, EventArgs e)
{
}
private void buttonNumber_Click(object sender, EventArgs e)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment