python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Executing linq lamda expression as parameter in System.Reflection Invoke Method calling
I'm trying to execute My GetSingleAsync method which comes with system reflection. But ı need to execute linq query when I'm invoking this method, in my researches ı mostly saw just single parameters,...

alperenoz
Votes: 0
Answers: 1
How to get System.Collections.Generic.List from FieldInfo using Reflection
I am analyzing code files that have unkown object and unkown container classes with Reflection.
Example of Object Class to find:
class Object
{
public string Name{ get; set; }
public Travel(...

jonas balsys
Votes: 0
Answers: 1
How to cast PropertyInfo to its own type using reflection
I am trying to use reflection for getting the property name declared and its value, I am able to get the declared property name using property info the main concern I am having is I want to get the va...
user2923187
Votes: 0
Answers: 1
How to Determine Nullability (NRT) of Generic Type Parameter?
For example, I might have a method with the following signature:
public async Task<ViewModel?> GetPersonUri()
Using reflection I would like to determine if the type parameter of Task is a nulla...
Dejan
Votes: 0
Answers: 1