I won't be on IRC soon, so I'll explain here, what I was talking about before:

The label 'InternalSystem.String[] TypeInfo' has been defined more
than once. Definition 1 = '0x00159b90 InternalSystem.String[]
TypeInfo:', Definition 2 = '0x0015a1f0 InternalSystem.String[]
TypeInfo:'

That happens when I try to use new array in function calls - commented
out code is at:
http://www.sharpos.org/redmine/repositories/diff/3/sandbox/viraptor/basicmethods/Kernel/Tests/CS/String.cs?rev=886

Affected:
if (string.Join(" ", new string[] {"a", "b", "c"}) != "a b c")
Not affected (works correctly):
string[] arr = new string[] {"a", "b", "c"};
if (string.Join(" ", arr) != "a b c")

I'm not sure if it happens with only one, or more calls like that.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
SharpOS-Developers mailing list
SharpOS-Developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sharpos-developers

Reply via email to