On episode #162 of Hanselminutes they were talking about PowerShell, but more importantly around 04:50 they mentioned that PowerShell used something called The Common Engineering Criteria to have a standard on which words to use when developing new modules for it.
I cannot find any concrete dictionary on recommended words through this page.
Does anyone know a good resource for standardized keywords to use when developing .NET (C# in this case)? I'm talking nouns and verbs.
One good point they brought up in the podcast was that you could almost alway guess what the object and methods is named.
This to avoid not knowing which one of these to select:
object.GetInfo();
object.FetchInfo();
object.CreateInfo();
object.RetrieveInfo();
UPDATE: I found a good start, a list of standardized verbs used in PowerShell, but they looks like the standards used in the .NET Framework.