multiline comment in vb.net
No we dont unfortunately………. You can do: Ctrl + K, Crtl + C To uncomment ctrl+k ctrl+u
No we dont unfortunately………. You can do: Ctrl + K, Crtl + C To uncomment ctrl+k ctrl+u
Although there isn’t a syntax, you can still get close by using the built-in block comment buttons: If you’re not viewing the Edit toolbar already, right-click on the toolbar and enable the Edit toolbar: Then, select a block of code and hit the “Comment Block” button; or if it’s already commented out, use the “Uncomment … Read more
I was finding the same answer, try :set paste this may help
var findComments = function(el) { var arr = []; for(var i = 0; i < el.childNodes.length; i++) { var node = el.childNodes[i]; if(node.nodeType === 8) { arr.push(node); } else { arr.push.apply(arr, findComments(node)); } } return arr; }; var commentNodes = findComments(document); // whatever you were going to do with the comment… console.log(commentNodes[0].nodeValue);
For me, a comment above the IF explains the IF statement itself. For example, if the condition being tested is particularly complex. A comment in the block below the IF or ELSE describes what’s going once the condition has been evaluated and a choice made. So like this: //Is this a favoured customer and do … Read more
The documentation states that it is not possible: … Lines that begin with the hash character “#” are considered comments, and are ignored. Comments may not be included on the same line as a configuration directive …
If you have a numberpad on your keyboard you can use Ctrl and the division sign on your numpad. Found this in the Bugreports pointed out by LazyOne
To skip lines starting with #: grep -v ‘^#’ myfile | while read -r file ; do … done Modify the grep command as needed to, for example, skip lines starting with whitespace and a # character.
Pressing Ctrl+K+C or Ctrl+E+C After selecting the lines you want to comment will not give space after slashes. you can use multiline select to provide space as suggested by Habib Perhaps, you can use /* before the lines you want to comment and after */ in that case you might not need to provide spaces. … Read more