Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program
- {
- private static int[] a=new int[10];
- public static void MethodA(int[] arr)
- {
- arr=new int[5];
- }
- public static void Main()
- {
- MethodA(a);
- Console.WriteLine(a.Length);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement