Y
Y
yamakasi_habr2022-02-07 00:09:56
C++ / C#
yamakasi_habr, 2022-02-07 00:09:56

What is this[...] in C#?

String Here is a piece of the class in which it is located

public VkResponse this[object key]


620038f6b7b33113075320.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vasily Bannikov, 2022-02-07
@yamakasi_habr

This is the Indexer
https://docs.microsoft.com/en-us/dotnet/csharp/pro...
In terms of meaning, it is a function that returns some VkResponse from key (which is object).
Syntactically, calling an indexer looks like calling by index in an array (with square brackets)

F
freeExec, 2022-02-07
@freeExec

Gets the value by key key, the same dictionary, or in this case json.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question