02-Editing/05-Rearranging_code.cs [81:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public void ExtendBlockWithGreedyBraces()
{
// 5. Place caret on outside of closing brace
// Up - Ctrl+Shift+Alt+Up
// Down - Ctrl+Shift+Alt+Down
//
// Move block to include next statement
// move up block to exclude current last statement
if (true)
{
Console.WriteLine("Hello");
}
Console.WriteLine("World");
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
localized/ja/02-Editing/05-Rearranging_code.cs [81:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public void ExtendBlockWithGreedyBraces()
{
// 5. Place caret on outside of closing brace
// Up - Ctrl+Shift+Alt+Up
// Down - Ctrl+Shift+Alt+Down
//
// Move block to include next statement
// move up block to exclude current last statement
if (true)
{
Console.WriteLine("Hello");
}
Console.WriteLine("World");
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -