2005-06-29 Jonathan Chambers <jonathan.chambers@ansys.com>
[mcs.git] / errors / cs3006-4.cs
blob3308b8556b5b4c465aaceaf2c8ce28bec592ba7e
1 // cs3006-4.cs: Overloaded method `CLSInterface.Test(int[,,])' differing only in ref or out, or in array rank, is not CLS-compliant
2 // Line: 9
4 using System;
5 [assembly: CLSCompliant(true)]
7 public interface CLSInterface {
8 void Test(int[,,] b);
9 void Test(int[,] b);