diff --git a/TestCOMServer/TestCOMServer/COMSafeArray.cs b/TestCOMServer/TestCOMServer/COMSafeArray.cs index 5bc62c6..0db158e 100644 --- a/TestCOMServer/TestCOMServer/COMSafeArray.cs +++ b/TestCOMServer/TestCOMServer/COMSafeArray.cs @@ -28,56 +28,57 @@ public interface ICOMSafeArray ComSourceInterfaces(typeof(ICOMSafeArray))] class COMSafeArray : ICOMSafeArray { - sbyte[] EchoInt8Array(sbyte[] value) + public sbyte[] EchoInt8Array(sbyte[] value) { return value; } - byte[] EchoUInt8(byte[] value) + public byte[] EchoUInt8(byte[] value) { return value; } - short[] EchoInt16(short[] value) + public short[] EchoInt16(short[] value) { return value; } - ushort[] EchoUInt16(ushort[] value) + public ushort[] EchoUInt16(ushort[] value) { return value; } - int[] EchoInt32(int[] value) + + public int[] EchoInt32(int[] value) { return value; } - uint[] EchoUInt32(uint[] value) + public uint[] EchoUInt32(uint[] value) { return value; } - long[] EchoInt64(long[] value) + public long[] EchoInt64(long[] value) { return value; } - ulong[] EchoUInt64(ulong[] value) + public ulong[] EchoUInt64(ulong[] value) { return value; } - float[] EchoFloat32(float[] value) + public float[] EchoFloat32(float[] value) { return value; } - double[] EchoFloat64(double[] value) + public double[] EchoFloat64(double[] value) { return value; } - string[] EchoString(string[] value) + public string[] EchoString(string[] value) { return value; }