What is the keyboard shortcut to collapse current region in VS2008?

keyboard-shortcuts, visual-studio, visual-studio-2008

Solution

CTRL + M, M should do the trick

By the way you can download a "poster" of shortcuts here

Problem

By "current region" I mean a region where the cursor is. EDIT: I am looking for region toggling, not outlining expansion toggling. By "region" I mean section of code defined by `#region` and `#endregion` directives. Ctrl + M, Ctrl + M toggles closest outlining (which for most cases would be current method not region).

Original source