Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ForLesson15
- {
- class Program
- {
- static void Main ()
- {
- int [] args = new int [] {1,2,3,4,5,6};
- WriteNumbers (args);
- }
- static void WriteNumbers (params int [] i)
- {
- foreach ( int j in i )
- {
- Console.WriteLine ( j );
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment