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.

Create DataTemplate in code behind

How do i add controls to datatemplates programmatically? For Example. Below I've created TextBlock and DataTemplate. TextBlock text = new TextBlock(); …

c# dynamic datatemplate code-behind
When should one use dynamic keyword in c# 4.0?

When should one use dynamic keyword in c# 4.0?.......Any good example with dynamic keyword in c# 4.0 that explains its usage....

c# dynamic c#-4.0 keyword
C#: How to perform a null-check on a dynamic object

How do I perform a null-check on a dynamic object? Pseudo code: public void Main() { dynamic dynamicObject = 33; if(true) { // Arbitrary …

c# dynamic null-check
Using LINQ, is it possible to output a dynamic object from a Select statement? If so, how?

Presently in LINQ, the following compiles and works just fine: var listOfFoo = myData.Select(x => new FooModel{ someProperty = x.…

c# .net dynamic duck-typing expandoobject
Populate spinner with years dynamically in Android?

I have been racking my brain trying to get this to work. I want to dynamically enter in years from 1900 …

android dynamic insert spinner
Problems embedding IronPython in C# (Missing Compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember'

I'm trying to do a simple hello world to test out embedding IronPython within C# but can't seem to resolve …

c# python .net dynamic ironpython
Displaying emoticons in Android

My IM app has to support emoticons. They are GIFs and have textual representations, which are used in the input …

android dynamic imageview emoticons
Dynamic table partitioning in Oracle

I'm in the process of building a database storage for my app consisting on a single table with a huge …

oracle dynamic database-partitioning
How can I dynamically add and remove form fields to be validated by Parsley.js?

I have a form ('#registrations') that I am validating with Parsley.js and so far it is working fine. …

jquery validation dynamic parsley.js
Create dynamic number of input elements with R/Shiny

I'm writing a Shiny app for visualizing insurance benefit plans at my company. Here is what I'd like to happen: …

r dynamic input shiny