1
vote
What kind of prefix do you use for member variables?
I've used to use m_ perfix in C++ but in C# I prefer just using camel case for the field and pascal case for its property.
private int fooBar;
public int FooBar
{
get { return foo …
0
votes
2
votes
What programming language should be taught in Computer Science 101?
I'm finishing up my degree now and all core courses were in c++. I'm glad they were as it prepared me for what most lanugages could throw at me and made learning java, and c# very easy... As for ov …
