Visual Studio C++ Multiline comments
问题 In VS C++ code, if i haven't selected anything or full line selected and press comment selection (Ctrl+K + Ctrl+C) then it will comment the whole line with // int x = 5; After Pressing Ctrl+K + Ctrl+C without anything selected or full line selected. // int x = 5; Now if I select some part of the line and press comments button again only selected text will be commented (bold means selected) int x = 5 ; After Pressing Ctrl+K + Ctrl+C with x = 5 selected. int /*x = 5*/; Incase of multiple lines