Dynamic C# - A New World of Possibilities

Preview:

DESCRIPTION

Dynamic C# - A New World of Possibilities. Aaron Erickson Lead Consultant, ThoughtWorks Author, The Nomadic Developer Co-Author, Professional F# (coming soon!) Microsoft MVP – C#. Crazy Shit We Can Do With the Dynamic Keyword *. The initial name of the talk before it was rejected…. - PowerPoint PPT Presentation

Citation preview

Dynamic C# - A New World of Possibilities

Aaron EricksonLead Consultant, ThoughtWorksAuthor, The Nomadic DeveloperCo-Author, Professional F# (coming soon!)Microsoft MVP – C#

Crazy Shit We Can Do With the Dynamic Keyword*

*Not all of this is a good idea (remember, use and abuse)

The initial name of the talk before it was rejected…

C# - What it resembles now…

C# - A little of everything…

Curly Braces (1.0)

Functional “Lite” with Linq (3.0)

And Now, Dynamic (4.0)

Generics (2.0)

Duck Typing

Expando Objects

Treat Method Calls Like Messages

Send Message

Receive Message

And More…

Metaprogramming - take the expression tree called by the caller and do something with it.

Interop – call other people’s libraries written using real dynamic languages (Ruby, JS, Python).

Interesting Applications of Dynamic C#

ActiveRecord

“ActiveRecord” for XML

Interop

Abuses… oh yes…

You shuddering yet? If not, you should be!

Is dynamic programming the answer to anything and

everything?

Case ForCase Against

Performance – dynamic lookup just can’t be as fast as static lookup.

You were confused with var? dynamic will make your head spin.

What is so bad about using strings in a lookup (i.e. table[“field”] vs table.field)

If you want dynamic, just use a language designed for it, like Ruby! Or JavaScript!

A lot fewer things are CPU bound than we tend to think. DB lookups? Really?

Sorry – if you are confused with var, you really need to put down the keyboard and take up something for dummies, like investment banking.

table.field looks cleaner, survives a rename refactoring, and can just take the shape of a static object later if introduced (introduce class refactoring for R# someday?)

Sometimes language choice is political. But need for dynamic remains.

Demo – Stupid Dynamic C# Tricks

Dynamic Everywhere? My ThoughtsPerformance argument has merit. Sometimes. No pretending Twitter didn’t happen.

Dynamic readers for things like Json, XML, Text, Excel, etc – will be really wicked cool!

End-user definition of objects. I can finally envision systems, based on C#, where you can have user defined fields on CRUD objects from databases, where an end user adds a field, names it, and binding just “works”.

This does not belong in your math or stats library. That is what Clojure, Scala, Erlang, F# - or where C# is your given language, LINQ, are for.

Linq + Dynamic in C# is mostly unexplored territory. Some amazing things could come out of that intersection.

So you wanna do dynamic…You will do TDD. Without it, you are a mess of runtime errors and maintenance nightmares

You will respect that with great power comes great responsibility. Programs using dynamic programs tend to be smaller, but metaprogramming to extremes can end up becoming “write-only” code.

You will need to consider that vast parts of .NET-land have never seen this stuff before. You will be ready to explain and justify why and how this stuff improves things.

In 2020, you will curse, and maybe throw a chair or two, because of some abuse of dynamic some schmuck did in 2010 in that 10 year old code base.

There is a good chance that schmuck will be me

Questions?

Thank You!

aaron.c.erickson@gmail.comtwitter.com/aaronerickson

http://nomadic-developer.com/