CSharp examples for Custom Type:Local Method
Local Method In Loop
using System;/*from w w w.j a v a 2 s .com*/ class LocalMethodInLoop { static void Main() { for (int i = 0; i < 10; i++) { PrintI(); void PrintI() { Console.WriteLine(i); } } } }