John Moreno

Results 36 comments of John Moreno

@cristianlt23 : I think if he thought he had the kind of pull necessary to get a someone to say yes, he wouldn't have written his open letter to MS...

What advantages would this have over returning a list of tulples or anonymous types?

```vb.net Dim lst = New List(Of Integer) From {1,2,3,4,5,6,7,8,9,10} Dim m = lst.Select(Function(i) (x:=i, y:=i.ToString())) Dim tp = m.Aggregate((ListI:=New List(Of Integer), ListS:=New List(Of String)), Function(seed, src) Console.Writeline("here") seed.ListI.Add(src.x) seed.ListS.Add(src.y) Return...

```vb.net Dim temp= From Students Select (ID, Name, Grades,Sports) Dim result = temp.SplitTuple Public Module ext Public Function SplitTuple(Of T1, T2, T3, T4)(tps As IEnumerable(Of (T1, T2, T3, T4))) As...

@hartmair: Nothing in VB doesn’t mean null, it means default value. Having IsSomething mean “not the default value” can make sense. Might not want that class constraint.

I am having a similar (same?) problem, with EF6.2 and EF6.4. The statck trace is different, but it's throwing from the same property. Glimpse.Ado.AlternateType.GlimpseDbConnection.get_State() +3 System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch(TTarget target, Func`3 operation, TInterceptionContext...

This isn't stale, this is still an existing problem. The docs say the latest version is nearly 3 years old

@TylerBrinkley: Why do you belive this: > I'm of the opinion that Enum was not allowed as a generic constraint initially in C# due to generic code-explosion as the current...

@jnm2 : sorry, typing on a iPad, I really meant `System.__CanonEnumInt`

Is there a syntax for saying that the resource is a webresource (aka add the WebResourceAttribute to the metadata for the resulting assembly)