File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed
TestCOMServer/TestCOMServer Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -28,56 +28,57 @@ public interface ICOMSafeArray
2828 ComSourceInterfaces ( typeof ( ICOMSafeArray ) ) ]
2929 class COMSafeArray : ICOMSafeArray
3030 {
31- sbyte [ ] EchoInt8Array ( sbyte [ ] value )
31+ public sbyte [ ] EchoInt8Array ( sbyte [ ] value )
3232 {
3333 return value ;
3434 }
3535
36- byte [ ] EchoUInt8 ( byte [ ] value )
36+ public byte [ ] EchoUInt8 ( byte [ ] value )
3737 {
3838 return value ;
3939 }
4040
41- short [ ] EchoInt16 ( short [ ] value )
41+ public short [ ] EchoInt16 ( short [ ] value )
4242 {
4343 return value ;
4444 }
4545
46- ushort [ ] EchoUInt16 ( ushort [ ] value )
46+ public ushort [ ] EchoUInt16 ( ushort [ ] value )
4747 {
4848 return value ;
4949 }
50- int [ ] EchoInt32 ( int [ ] value )
50+
51+ public int [ ] EchoInt32 ( int [ ] value )
5152 {
5253 return value ;
5354 }
5455
55- uint [ ] EchoUInt32 ( uint [ ] value )
56+ public uint [ ] EchoUInt32 ( uint [ ] value )
5657 {
5758 return value ;
5859 }
5960
60- long [ ] EchoInt64 ( long [ ] value )
61+ public long [ ] EchoInt64 ( long [ ] value )
6162 {
6263 return value ;
6364 }
6465
65- ulong [ ] EchoUInt64 ( ulong [ ] value )
66+ public ulong [ ] EchoUInt64 ( ulong [ ] value )
6667 {
6768 return value ;
6869 }
6970
70- float [ ] EchoFloat32 ( float [ ] value )
71+ public float [ ] EchoFloat32 ( float [ ] value )
7172 {
7273 return value ;
7374 }
7475
75- double [ ] EchoFloat64 ( double [ ] value )
76+ public double [ ] EchoFloat64 ( double [ ] value )
7677 {
7778 return value ;
7879 }
7980
80- string [ ] EchoString ( string [ ] value )
81+ public string [ ] EchoString ( string [ ] value )
8182 {
8283 return value ;
8384 }
You can’t perform that action at this time.
0 commit comments