blah blah blah is here! blah blah » Close

0
votes
0 answers

.Net Windows Service or Scheduled Task??

Hello, #1: I have a requirement to query a database based on a date and write to file all records that have been added or modified. I also have to move all new files uploaded to the server moved to another directory. This directory a ...

0
votes
1 answers

Best Practices for Overloaded Methods

Hi, C# allows overloaded methods. I know it is common to overload constructors. Is there a best practice regarding overloaded methods? THanks Jack

0
votes
1 answers

Difference between properties and member variables

Hi, Is there any performance difference between accessing object through it's properties vs through it's member variables? ie public class test { protected int intID ; public int ID { get{return intID ;} set ...

Feedback