Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions TestCOMServer/TestCOMServer/COMSafeArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down