c# - Multiple statements on a single line in the Immediate Window -


is possible have multiple statements on single line in visual studio immediate window c#?

the following post suggests it's possible vb: https://stackoverflow.com/a/27554199/216440

however, when try in c# end of expression expected error.

what i've tried is:

var p0 = command.parameters[0];object v = p0.value; 

where command sqlcommand object.

if split expressions onto separate lines each work. however, when they're on same line, above, end of expression expected error.

this in visual studio 2013 update 5.

no, far know, visual studio immediate window does not support multi-line statements c#.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -