Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Tips wanted for a .net newcomer
Message
 
À
19/02/2014 14:39:14
Information générale
Forum:
Visual FoxPro
Catégorie:
Visual FoxPro et .NET
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2000 Server
Database:
MS SQL Server
Application:
Desktop
Divers
Thread ID:
01594688
Message ID:
01594732
Vues:
97
My only tip, and I know I am swimming against the current, but it is something I hate, is to avoid using "using" directive (not the statement) unless used as an alias. For example, lots of samples you find omit the using, then when you try to use them you do not know where the heck they are supposed to be. In short, I abhor code like this:
using System;
using System.Windows
using System.Diagnostics.EventLog;
using System.Windows.Controls;
.....

WriteEntry(.....) // where the heck is this??
....
Much clear code, although verbose, which I do not mind:
System.Diagnostics.EventLog.WriteEntry(....);
Now you know exactly from where WriteEntry comes from. If you want to save typing, the alternative is using an alias directive
using Logger = System.Diagnostics.EventLog;
...

Logger.WriteEntry(....);
Anyways, I think I stand alone on this one, as everyone seems to love using "using" ...
"The five senses obstruct or deform the apprehension of reality."
Jorge L. Borges?

"Premature optimization is the root of all evil in programming."
Donald Knuth, repeating C. A. R. Hoare

"To die for a religion is easier than to live it absolutely"
Jorge L. Borges
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform