找传奇、传世资源到传世资源站!

C#实例方法的调用

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

C#实例方法的调用 常用C#方法-第1张
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _3._3{ class sampleIndex { private double[] arr = new double[5] { 1, 2, 3, 4, 5 }; public double this[int index] { get { if (index < 0 || index >= 5) { return 0; } else { return arr[index]; } } set { if (index >= 0 && index <= 5) { arr[index] = value; } } } } class Program { static void Main(string[] args) { sampleIndex smpIndex = new sampleIndex(); smpIndex[3] = 3.5; for (int i = 0; i < 6; i ) { Console.WriteLine("smpIndex[{0}]={1}", i, smpIndex[i]); } Console.ReadLine(); } }}

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复