All Questions
4 questions
2
votes
2
answers
113
views
Recursive lookup needed. DB vs. C# GUI
I currently have a program in which I want to list 'support tickets' in a grid.
The tickets are coming from a SQL DB out of a ticketing system.
A ticket has an activity, example:
I have a fully ...
0
votes
1
answer
597
views
How to get Twitter statuses with replies using TweetSharp
I'm trying to get all Tweets tweeted by me with replies (if any).
I'm using TweetSharp and I'm able to get my own tweets but couldn't figure out how to get the replies as well in the same request/...
2
votes
1
answer
798
views
Solving a Directed Graph with Recursion
I'm working on a project that builds flight routes from airport to airport. For example, if someone wants to travel from LAX to JFK, I'd like to return all possible paths from LAX to JFK (with a ...
1
vote
3
answers
477
views
Recursive loop missing the first value in c#
I want to get a list of values, After I get one value I pass the value and call the same method.
if the structure is like
60
|
61
|
63
|
64
the code works fine and returns all the value when I pass ...