I declared a variable as below in script task
dynamic sqldata = Dts.Variables["User::sqldata"].Value;
When I try to click OK for script task component, error coming as below
But when I replace dynamic keyword with object or var, which works fine.
So why dynamic datatype not working in script task?
