Top "Dynamic" questions

Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.

How do I reflect over the members of dynamic object?

I need to get a dictionary of properties and their values from an object declared with the dynamic keyword in .…

c# dynamic reflection
Call static method with reflection

I have several static classes in the namespace mySolution.Macros such as static class Indent{ public static void Run(){ // implementation } // …

c# reflection dynamic
Modifying CSS class property values on the fly with JavaScript / jQuery

I've run into a unique situation that I have so far been unable to find a solution for: dynamically assigning …

javascript jquery css dynamic properties
Javascript Regexp dynamic generation from variables?

How to construct two regex patterns into one? For example I have one long pattern and one smaller, I need …

javascript regex dynamic
Dynamic chart range using INDIRECT: That function is not valid (despite range highlighted)

I'm trying to create a chart with a range built dynamically using the INDIRECT function. Excel does recognize the range …

excel dynamic range excel-formula excel-indirect
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" ) ... …

c# dynamic expandoobject
Dynamically create an object of <Type>

I have a table in my database that I use to manage relationships across my application. it's pretty basic in …

c# .net dynamic
How to implement a rule engine?

I have a db table that stores the following: RuleID objectProperty ComparisonOperator TargetValue 1 age 'greater_than' 15 2 username 'equal' 'some_name' 3 …

c# dynamic rule-engine
Dynamically add textViews to a linearLayout

I read this somewhere here and I totally lost it, but could use some assistance. My app is pulling the …

android textview android-edittext add dynamic
how to clone content of a div to another div

I want to copy the content of a selected div to another div with jquery clone. but I dont want …

jquery dynamic html copy clone