Category "dynamic"

Dynamic XML flow problem with jQuery parsing to HTML page

The problem I have is that this jQuery: <script type="text/javascript"> $(document).ready(function(){ $.get('CampusList.xml', function(xmltre

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 (myVariab

How to detect if a property exists on an ExpandoObject?

In javascript you can detect if a property is defined by using the undefined keyword: if( typeof data.myProperty == "undefined" ) ... How would you do this