Tagged Questions
4
votes
7answers
93 views
c# - Read specific bytes of an file
Is there any way to read specific bytes from an file?
For example, I have the following code to read all the bytes of the file
byte[] test = File.ReadAllBytes(file);
I want to read the bytes from ...
1
vote
6answers
244 views
Get index of a specific item from list containing possible duplicates
okay, I have a list of class objects like so:
List<fruit> lst = new List<fruit>();
lst.Add(orange);
lst.Add(apple);
lst.Add(grape);
lst.Add(grape);
lst.Add(orange);
...
1
vote
1answer
169 views
C# How to play video from a specific position?
I'm wanting to create a program that you can play an AVI file starting at a specific position, and to play for a specified amount of time.
I can't figure out how to start at a specific position. ...
1
vote
3answers
376 views
C# 2.0 specific timezone
HI All,
I am working on a legacy application in .NET 2.0 and I want to convert time from local time (which happens to be UTC+1) to the time in Brazil (that is "E. South America Standard Time" as ...
0
votes
1answer
266 views
How to select specific item from BindingList<KeyValuePair<string, string>> in C#?
BindingList<KeyValuePair<string, string>> properties = new BindingList<KeyValuePair<string, string>>();
Code above stores around 10-30 objects as KeyValuePair<string, ...
0
votes
4answers
965 views
How to export an Excel from dataset and save it into a specific path without showing the save as box
I have a code to exporting dataset to excel working fine, I want to exporting the excel into a specific location on the server, my code is down here and what changes should I do: Any ideas?
public ...