If I have a dynamic method in C# 4. Can it be used to return for example in 1 call - A string, in another call a Boolean, and in another call an int?
Or is the return type of the dynamic method set after the first runtime call? Meaning if the first time I call the method it returns a boolean, must all subsequent calls to that method also return boolean?