0
votes
6answers
153 views
When, if ever, should the name of a property contain the name of the class?
public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?
// choose one
public string Name { get; …
0
votes
2answers
44 views
How to receive a batch of checkbox data in PHP?
The key code is:
while ($row= mysql_fetch_array($result, MYSQL_ASSOC))
{ $id=$row[id];
$html=<<<html
<tr><td>
<input style="float:left" type="checkbox" …
0
votes
3answers
59 views
What are all the most common method/variable/class names that you use?
Most common method/variable/class names that you use often and that explain you intent clearly and precisely.Is there any pattern you follow to figure that out.
2
votes
11answers
214 views
Explanation of naming conventions for classes, methods and variables
I'm currently in University and they're pretty particular about following their standards.
They've told me this:
All classes must start with a capital
letter
Correct
public class MyClass {}
…
0
votes
6answers
285 views
Should I capitalize constructor names for my classes?
I use camel case which has the first letter of all variable names, functions, etc lowercased. But the class names are capitalized. Should I use:
class Foo
{
function foo()
{
}
}
or :
…
1
vote
2answers
42 views
How should i name for this table and function?
I have a list of media that i inspired and a list i was inspired by. In a table i named it
inspirer, inspired. I am sure inspirer is not a word so thats one problem.
next is i have 2 functions, i …
