Search Results

4
votes

Reading from file not fast enough, how would I speed it up?

S = SR.ReadLine(); while (S != null) { stringFromFile.Append(SR.ReadLine()); } Of note here, S is never set after that initial ReadLine(), so …
1
vote

Assembly “is not signed correctly.” Warning

Verify that the assembly wasn't generated with "delay sign" set. This would cause the assembly to advertise that it was signed, when it only has a null placeholder instead. This will …