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

minify - Minimizing css files -

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -