0
votes
What is a realistic starting salary for a C# programmer?
Your region will have the biggest impact on earning potential, right along with knowledge.
I looked at your profile and see you are in Toronto. Have a look at this Website
…
2
votes
Which LINQ syntax do you prefer? Fluent or Query Expression
While I do understand and like the fluent format , I've stuck to Query for the time being for readability reasons. People just being introduced to LINQ will find Query much more comfortable to read …
1
vote
Removing file locks
I would really consider finding another 3rd party dll. Any system handling Streams should properly respond to error conditions and not leave things like file locks in place.
Is it possible …
0
votes
Should you access a variable within the same class via a Property?
Generally depending on the project coding standards I use a "_" or "m" preceding the name for my private class attributes. (Like below)
private int mVariable;
private int _Variable; …
