[Mono-bugs] [Bug 688414] Exposing IEnumberable<> on a WCF service fails
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Thu Apr 21 03:23:48 EDT 2011
https://bugzilla.novell.com/show_bug.cgi?id=688414
https://bugzilla.novell.com/show_bug.cgi?id=688414#c1
Atsushi Enomoto <aenomoto at novell.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #1 from Atsushi Enomoto <aenomoto at novell.com> 2011-04-21 07:23:47 UTC ---
Fixed in git master (7f9aff3) and mono-2-10 (d3a5083).
A simpler repro for reference:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Xml;
public class Tset
{
public static void Main ()
{
var ds = new DataContractSerializer (typeof
(IEnumerable<Guid>));
using (var xw = XmlWriter.Create (Console.Out))
ds.WriteObject (xw, new Guid [] {Guid.NewGuid ()});
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list