I have a collection. The coll has strings:
Location=”Theater=1, Name=regal, Area=Area1″
Location=”Theater=34, Name=Karm, Area=Area4445″ etc. I have to extract the name bits from the string.
I have a collection. The coll has strings:
Location=”Theater=1, Name=regal, Area=Area1″
Location=”Theater=34, Name=Karm, Area=Area4445″ etc. I have to extract the name bits from the string.
Dim g = lst.Data.GroupBy(Function(T) New With
{
T.mName,
T.mUnit,
T.mPrice
}).Select(Function(t) New With
{
.mName = t.Key.mName,
.mPrice = t.Key.mPrice,
.mUnit = t.Key.mUnit,
.