0
votes
6answers
284 views

Wise way to implement a website login and database tables for a small shop

Im building this website for a small store and I was told that its better not to keep the login and the rest of the users information on the same table. Now im wondering, what is the best way to ...
0
votes
0answers
30 views

Visual Studio UML reference to another modeling project

I am creating several components and have broken them into different class diagrams / modeling projects. I have to do this because a single diagram simply isn't big enough. Is there a way for a ...
1
vote
2answers
338 views

How to organize MVVM files in solution

I'm fairly new to the MVVM concept but like a lot of the flexibility it gives me so far. However, I'm struggling to find a good way to manage my code. I have several classes that are just sitting in ...
3
votes
1answer
1k views

Main differences between “Monodevelop” and “Visual Studio” [closed]

What are the main differences between Monodevelop and Visual Studio? I specifically want to know the differences while writing programs on C# language. I want to know the difference because I am a ...
2
votes
2answers
431 views

Should I start MCPD training now or wait for new exams? [closed]

i apologize if this question has been asked before, or if this is the wrong place to put it. I'm beginning my study track for the MCPD certification in Web Development. However, Microsoft plans to ...
14
votes
10answers
1k views

Declaring interface in the same file as the base class, is it a good practice?

To be interchangable and testable, normally services with logic needs to have interface, e.g. public class FooService: IFooService { ... } Design-wise, I agree with this, but one of the things ...
3
votes
1answer
210 views

Writing scripts for Visual Studio project

What is the best way to write and run small scripts and tasks that are specific to a particular .Net project? Such things as configuring a database or confirming proper connections to servers. In ...
0
votes
4answers
557 views

Is this program possible?

Everyday I have to "count" files that come in from facilities across the country to ensure we receive them all. The names of said files are defined by which date/facility they came from. ...
0
votes
3answers
202 views

How to port this architecture to .net?

My team is currently locked into using a tool we dislike that takes the form of a Eclipse plugin and a .jar; the plugin gives us a button to quickly run a single file's code (via invoking the main ...
2
votes
2answers
295 views

Add a second developer to the team

In my company, I'm the only developer, but we plan on expanding the team by hiring a second programmer. I know there are a lot of implications to that (especially around source control). I've Googled ...
2
votes
1answer
334 views

Visual Studio extension to highlight code reuse?

I was under a tight deadline to finish a project in C#, and as a result I feel I didn't code things in the most efficient way. Now that I have time to go back and optimize the code, I was wondering if ...
4
votes
4answers
1k views

How to treat “The field is never used” warnings?

Warning 1 The field 'MCS_SPS_School.Fees.DiscountAmt.rtvalue' is assigned but its value is never used G:\Jagadeeswaran\Nov 17\MCS-SPS School\MCS-SPS School\Fees\DiscountAmt.cs Warning 2 ...
27
votes
14answers
1k views

Newbie seeking advice on programming in general [closed]

need some of you to remember back to a time when you might have been bad at programming... Been at my new job (as a software developer) for a couple of months now, passed probation period. Have very ...
4
votes
7answers
423 views

What are ways I can speed of development time when building applications? [closed]

I noticed that overtime with experience that the curve of learning shifts from trying to learn a language or technology (the way it works) to how to develop applications faster and with less code. I ...
7
votes
7answers
572 views

What is the difference between a prototype and a production level solution?

This question is purely for learning and to step-up my technical understanding. I know there is no perfect solution and this question has possible never ending solution list but I think it's very ...
3
votes
2answers
187 views

Is kick-starting myself into the programming world by reading from a book about VS 2008 & .NET 3.5 a bad idea?

Basically what the title says. I'm completely new to programming and decided C# to be the best language to start learning, so I went ahead and installed Visual Studio Express 2010 C# to get started. ...
0
votes
2answers
144 views

Looking for suggestions on where to purchase vs.net 2010 from? which edition?

I need to purchase vs.net 2010 so I can use all the new features and entity framework. ANy suggestions on which edition I should get? Where is a good place to buy it on the cheap?
3
votes
7answers
386 views

Is the rule of 10% code is comments still valid?

I've used some older languages before C# and I always felt the need to comment what I was doing so it is clear for anyone who reads the code. But now that I use C# decently, I often feel that it's a ...