To Examples
RepeatSentence Example, source code file Program.cs
using System; namespace RepeatSentence { ///
/// RepeatSentence Example, source code file Program.cs /// RepeatSentence Example: Call a subroutine to print a /// sentence a specified number of times. ///
public class Program { public static void Main() { // Define input arguments. string s = "I will not talk in class."; int n = 10; // Invoke user defined method. RepeatSentence(s, n); Console.ReadLine(); } // Define user defined method with parameters // sentence timesToRepeat. public static void RepeatSentence(string sentence, int timesToRepeat) { for (int i = 1; i <= timesToRepeat; i++) Console.WriteLine("{0,2}. {1}", i, sentence); } } }