Tagged Questions

5
votes
5answers
143 views

How do I dynamically reference incremented properties in C#?

I have properties called reel1, reel2, reel3, and reel4. How can I dynamically reference these properties by just passing an integer (1-4) to my method? Specifically, I am looking for how to get an ...
1
vote
1answer
644 views

Linq to SQL: Varbinary(Max) incremental reads

In SQLServer 2008 stored procedures, SUBSTRING can be used to return only part of a varbinary(MAX) column at a time from a query. Is a similar feature available when using LINQ To SQL via C# directly ...
0
votes
4answers
86 views

Incremental JSON Parsing in C#

I am trying to parse the JSON incrementally, i.e. based on a condition. Below is my json message and I am currently using JavaScriptSerializer to deserialize the message. string json = @"{"id":2, ...