Tagged Questions
9
votes
2answers
281 views
Windows C# implementation of linux dd command
I'm writing a C#.Net app to run on windows that needs to take an image of a removable disk and chuck it onto a Linux Live USB. The Live USB is the inserted into the target machine and boots, on start ...
2
votes
1answer
158 views
C# Html Agility Pack dd and dt tags parse problem
I'm trying to parse this field, but can't get it to work. Current attempt:
HTML:
<div class="movie_data">
<dl>
<dt><a ...
1
vote
1answer
2k views
How to query datetime based on date in c#
I have an MS-Access database with a DateTime column.
ex: 03/08/2009 12:00:00 AM.
I want query based on date like:
select * from tablename where date='03/08/2009'
I want display data as 03/08/2009 ...