Test if a property is available on a dynamic variable My situation is very simple. Somewhere in my code I have this: dynamic myVariable = GetDataThatLooksVerySimilarButNotTheSame(); //How to do this? if (myVariable.MyProperty.Exists) //Do stuff So, basically my question is... May 23, 2022 0 Comments