Hi
I Knew that when I serialize IEnumerable in wcf is not posible since IEnumerable can't be serialized since it is a interface., so many years ago I obtained the error:
Now, the wcf returns an "ienumerable" and it doesn't return error..
My method is: ver()
public CompositeType1 ver() { return new CompositeType1 { ver = ver1() }; } public IEnumerable<int> ver1() { var x = new List<int>() { 1, 2, 3 }; return x; }
And it returns an ienumerable without errors... I suppose that Microsoft fixed after VS 2013.