using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sample { /* * HNBridge Sample * 05. 06. HNBridge 配列プロパティアクセスサンプル */ public class Sample006 { public string[] Month { set; get; } public Sample006() { this.Month = new string[] { "Jan.", "Feb.", "Mar.", "Apr.", "May.", "Jun.", "Jul.", "Aug.", "Sep.", "Oct.", "Nov.", "Dec." }; } } }