Skip to the content.

< Back


MyIndexer

Namespace: MyClassLib

A class with indexers.

public class MyIndexer

Inheritance ObjectMyIndexer
Attributes NullableContextAttribute, NullableAttribute, DefaultMemberAttribute

Indexers

this[Int32]

public int this[int index] { get; set; }

Parameters

index Int32

Property Value

Int32

this[String]

public int this[string key] { get; }

Parameters

key String

Property Value

Int32

Constructors

MyIndexer()

public MyIndexer()

< Back