Tagged Questions
The casing tag has no wiki summary.
4
votes
5answers
529 views
What is the best-practice casing style for javascript? Why?
One aspect of javascript that it's hard to find information on is casing practices. By casing practices, I mean what casing style (ie. camel-case, pascal-case, etc) should be used for what elements ...
3
votes
1answer
91 views
CA1704 - Microsoft seems to be blocking the word 'Multi'?
public class MultiSomething { } //CA1704:IdentifiersShouldBeSpelledCorrectly
When I run Code Analysis, I get an error because the Microsoft does not recognize the word 'Multi' (go figure they use it ...
3
votes
2answers
466 views
How to force UpperCase in a VS2008 snippet?
I've settled on the following style of creating properties (with a backing field):
private _firstName;
public string FirstName
{
get { return _firstName; }
set { _firstName = value; }
}
...
3
votes
5answers
520 views
Why is DB an acronym and not abbreviation?
According to the .NET framework design guidelines, they say DB is an acronym and cased as such. But I thought it was an abbreviation of database?
2
votes
3answers
67 views
Does naming conventions make better maintainable code?
I like to give my variables, methods and objects descriptive names. Obviously not going overboard, but let me give you a couple of examples.
public class Account
{
public decimal Balance { get; ...
1
vote
0answers
732 views
WPF Metro design: How apply character case with Style?
I'm trying to develop a UI in WPF following Metro design principles - see Scott Barnes website for a great survey.
Character casing is one of Metro milestone, which can be easily achieved in css ...
1
vote
1answer
164 views
Git checkout file - casing in file name
Git newbie here :)
Faced casing-related problem: file aspnetdb.mdf was removed from repository several commits ago, I decided to restore it from some of earlier commits and did it is such way:
...
0
votes
2answers
70 views
Should I capture email addresses in lowercase in an uppercase system?
Your opinions please.
In our system the decision was made that all fields (except notes) will be forced into uppercase. I don't like it, but the system's intended users aren't very computer literate, ...
0
votes
4answers
131 views
Regex and the characters case
Okay, I got a rather simple one (at least seems simple). I have a multi lined string and I am just playing around with replacing different words with something else. Let me show you...
...