Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9749694
indexer.cs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
773 B
Subscribers
None
indexer.cs
View Options
// cs_keyword_indexers.cs
using
System
;
class
IndexerClass
{
private
int
[]
myArray
=
new
int
[
100
];
public
int
this
[
int
index
]
// indexer declaration
{
get
{
// Check the index limits
if
(
index
<
0
||
index
>=
100
)
return
0
;
else
return
myArray
[
index
];
}
set
{
if
(
!
(
index
<
0
||
index
>=
100
))
myArray
[
index
]
=
value
;
}
}
}
public
class
MainClass
{
public
static
void
Main
()
{
IndexerClass
b
=
new
IndexerClass
();
// call the indexer to initialize the elements #3 and #5:
b
[
3
]
=
256
;
b
[
5
]
=
1024
;
for
(
int
i
=
0
;
i
<=
10
;
i
++
)
{
Console
.
WriteLine
(
"Element #{0} = {1}"
,
i
,
b
[
i
]);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Mon, Aug 25, 6:06 PM (21 h, 49 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3464795
Attached To
rPUC universal-ctags debian packaging
Event Timeline
Log In to Comment