C#中索引器的操作
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace indexDemo
{
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 smp = new SampleIndex();
smp[3] = 7.4;
smp[2] = 8.9;
for (int i = 0; i < 6; i++)
Console.WriteLine(smp[i]);
Console.ReadLine();
}
}
}
相關文章
- C#中的各種各樣的索引器C#索引
- c# 索引指示器C#索引
- 瞭解下C# 索引器(Indexer)C#索引Index
- C# 實現自己索引器C#索引
- C#索引器和屬性C#索引
- C#中URL的操作類C#
- c#中的insert操作C#
- MongoDB系列一(索引及C#如何操作MongoDB)MongoDB索引C#
- C#筆記----------------------------索引指示器C#筆記索引
- C#中操作IIS 7.0C#
- 在C#中操作XML .C#XML
- C#中PDF文件操作類C#
- C#中的定時器(二)C#定時器
- C#中幾個不常用的操作符C#
- oracle索引操作Oracle索引
- [C#]C#中字串的操作C#字串
- C#快速入門教程(19)—— 索引器與陣列C#索引陣列
- C#學習筆記-欄位、屬性、索引器C#筆記索引
- update表中index索引列對原索引條目做什麼操作?Index索引
- 關於ASP.NET/C#中對Cookie的操作ASP.NETC#Cookie
- C# 基於索引的篩選C#索引
- shrink 操作對索引的影響索引
- Update操作對索引的影響索引
- 觸發器中操作LOB觸發器
- 索引器索引
- mysql 索引的基礎操作彙總MySql索引
- 索引的知識要點與操作索引
- C# 操作ExcelC#Excel
- C#操作ExcelC#Excel
- C# 字串操作C#字串
- C# Array類的基本操作C#
- C# 索引器使用總結C#索引
- 【C#】山脈陣列的峰頂索引C#陣列索引
- [C#]C#時間日期操作C#
- 事件處理器中對領域的操作事件
- sqlserver索引重建和索引重組的區別和操作方法SQLServer索引
- 【Oracle】-【建立索引】-建立索引的操作原理與一些體會Oracle索引
- 【仰天一笑】asp.net c#中對cookie的操作ASP.NETC#Cookie