Tagged Questions
1
vote
1answer
154 views
lock iList .net thread safe
Im just confused why adding to a list would not be thread safe like below
object aLock = new object();
List<string> aList = new List<string>
lock(aLock)
aList.Add("abc");
Not sure ...
0
votes
1answer
339 views
Thread safe adding of subitem to a ListView control
I'm trying to convert an old Windows Forms Application to a WPF application.
The following code no longer compiles under C# .NET 4.0:
// Thread safe adding of subitem to ListView control
private ...
2
votes
5answers
837 views
Is there any safe refactoring tool for .net (or at least c#)?
I recently read Michael C. Feathers' book Working effectively with legacy code and came across the point where he mentioned a way to test the safety of automatic refactoring tools.
My question is: ...
25
votes
8answers
14k views
Is there a way of making strings file-path safe in c#?
My program will take arbitrary strings from the internet and use them for file names. Is there a simple way to remove the bad characters from these strings or do I need to write a custom function for ...