Dynamic data type in Workflow Foundation 4

Can I use a dynamic data type in WF 4.0? And if this is possible, then how can I do this?

+3
source share
1 answer

When you create actions or workflow extensions in your code, you can use dynamic data types, as elsewhere in C #. When using VB expressions inside a XAML workflow, you cannot. Despite the fact that VB has many dynamic features, setting the strict off option is not a way to do this in the workflow, and all expressions are compiled using set strict on and set explicitly.

+4
source

Source: https://habr.com/ru/post/1741044/


All Articles