J
Jon
Is there a best practice for how much logic, and what type of logic,
to place in a C# constructor?
For example, if I have setup logic that might take 20 seconds to
several minutes to complete, should that be placed in a C#
constructor?
This involves replicating data from a remote service into a local
database, and so it sometimes is quick, but if there is a large amount
of data, it could take several minutes to complete.
Are there any good books or web pages that explain C# constructor best
practices?
to place in a C# constructor?
For example, if I have setup logic that might take 20 seconds to
several minutes to complete, should that be placed in a C#
constructor?
This involves replicating data from a remote service into a local
database, and so it sometimes is quick, but if there is a large amount
of data, it could take several minutes to complete.
Are there any good books or web pages that explain C# constructor best
practices?