T FindBy(object key);
What is the above Line of code saying?
T this[object key] { get; set; }
What is this Above line of code? Some say it is an Indexer which I do not fully understand!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The first is a method declaration, with the return value being a generic type. The second one is an indexer property.
Here’s an explanation of what these terms mean: