2
votes
5answers
109 views
Using background worker with multiple classes in C#
I am learning to program in C# and have most of the basics down already. I am having trouble using the background worker and using it with multiple classes. This is a backup progra …
0
votes
2answers
44 views
Efficient file reading techniques in C#
I am looking for the best way to read a CSV file line by line. I want to know what are the most efficient ways of doing the same. I am particulary concerned when the size of the fi …
2
votes
4answers
46 views
Array.IsReadOnly inconsistent depending on interface implementation
A typed array implements both the System.Collections.IList and System.Collections.Generic.ICollection<T> interfaces, which both have their own IsReadOnly properties. But what …
0
votes
2answers
23 views
What is “AxSHDocVw” in .NET?
What is it use and how it can be used.I think its a DLL.But don't know much more.
0
votes
1answer
11 views
Linq - 2 tables - Sum
Hi, i have 2 tables:
Asiento
********
Id_Asiento integer key
Fecha date
It_Asiento
**********
Id_Asiento integer Forenkey
Importe float
I wan to do This SQL Query with Linq
se …
2
votes
2answers
126 views
Is using an arraylist of chars faster for performing multiple string concatenation?
I'm using the .Net micro framework so the StringBuilder is not available.
I have seen some code from apt professionals to use an Arraylist of chars to concat and build strings, as …
-2
votes
2answers
72 views
How to instantiate a variable to call a method.
Is their a way in c# to instantiate a variable into a method call without using a switch statement.
0
votes
1answer
49 views
LINQ - Set element in Dictionary to empty where DateTime value is oldest
I have a Dictionary<string, XMLMessage> where XMLMessage is a struct:
private struct XMLMessage
{
public string Message { get; set; }
public DateTime …
0
votes
4answers
61 views
Is Multiple Iterators is possible in c#?
Hi,
Can multiple iterators(for a single class or object) is possible in c#.net? if it is give me some simple examples.Sorry if the question is not understandable and plz make me …
0
votes
3answers
42 views
Threading and un-safe variables
I have code listed here: Threading and Sockets.
The answer to that question was to modify isListening with volatile. As I remarked, that modifier allowed me to access the variable …
3
votes
7answers
150 views
+100
Why do unrelated (autopostback) methods get called when an Asp.Net ListBox autopostback method is invoked?
I'm sure this is simple but it's driving me nuts.
I have a ListBox on my page to show artists, which calls a method when the index is changed, and a button which loads an artist f …
0
votes
2answers
75 views
C#: meaning of statement… Action wrappedAction = () =>
Saw the code here. Can any one tell me what it means?
Action wrappedAction = () =>
{
threadToKill = Thread.CurrentThread;
action();
};
Can we …
1
vote
5answers
58 views
Reading Multiple Files in Multiple Threads using C#, Slow !
Hi All,
I have an Intel Core 2 Duo CPU and i was reading 3 files from my C: drive and showing
some matching values from the files onto a EditBox on Screen.The whole process takes …
0
votes
3answers
70 views
Accessing member variable directly vs through property
Friends,
I am asking this question with performance as main concern. But I would like to know other possible advantages / disadvantages for both approaches.
The question is: Sinc …
5
votes
3answers
91 views
How to cancel an asynchronous calls?
The title says it all. How to cancel an asynchronous calls? The .NET APM doesn't seem to support this operation.
I have the following loop in my code which spawns multiple threads …
