"I would like to learn this as fast as
I can."
Sit back and relax, it's going to take at least a decade to turn you into anything like a competent software developer, assuming that's the route you're wanting to go down, and all the tutorials in the world aren't going to compensate for that.
You have to remember that becoming a good developer on some platform, say C# and .NET requires you to build skills in several areas:
- The language (in this case C#)
- The platform proper (in this case .NET)
- Additional platform cruft (e.g. all the LINQ stuff, ADO .NET etc.)
- General programming skills (requirements engineering and analysis, problem solving, software design, etc.)
The latter can be applied across multiple languages and platforms, of course; it all boils down to an interpretation of some common sense principles which will make your software actually behave in the way it was expected to, and maybe even do it efficiently.
Also, bear in mind that "programmer" and "software developer" (or "engineer") are two different things; there's a rather large gap between being able to hack together some implementation (however cool) in code versus being able to analyse an entire problem, architect and design a system and critically evaluate and improve that solution.
Since you have absolutely no experience programming, I'm going to echo the suggestions that you pick up one or two C# tutorials - maybe even a decent introductory book, but don't expect any of that to turn you into a superstar.
Once you're confident with the basics, and can write silly little applications, you can begin messing around with some of the more useful parts of .NET and the related technologies. Exactly which these are is going to depend somewhat on the kinds of applications you're going to want to be writing - for line-of-business applications, for instance, you're going to want to get some considerable experience writing database applications, and that means getting to grips with the myriad methods of doing so. In the process, you'll probably find yourself learning some basic database concepts, some SQL, etc.
At this stage, you are going to want to continue reading as much as you possibly can, not only about C# and .NET, but general software development topics; you may very well find your bookshelf growing a little. The idea is not simply to make you a brilliant C# hack, but to turn yourself slowly into something resembling a software developer. Gradually, you'll begin to develop a kind of flair for designing things in a manner which is consistent with others who develop for your platform; you'll begin to understand how to make an object-oriented design really shine, and you'll write better code.
Let's say that process takes you a few years. You'll eventually realise that while you might have a language, most of a platform and so on under your belt, and while you might be able to design something on the back of an envelope, while thumbing expertly through a well-marked set of reference materials...what you'll realise is that you're only just getting started.
The above is an idealised view of the process; in the real world, there is no time to cruise through from A to Z and pick it all up in a continuous process. Languages and platforms evolve, and requirements change so that you'll have to learn new ways of doing things; new intricacies of some database system, or new paradigms which allow you to more concisely express your ideas. For a good developer, it's impossible to get by on one language alone - on a day to day basis, you may only use one, but what you'll find is that understanding a different kind of language - say, something functional - gives you such a wealth of new approaches to a problem, your brain will almost certainly want to explode.
I'll stop here, before I turn this into something huge and horrible and resembling a Steve Yegge essay. This answer, while it looks big, is actually a terrible treatment of the subject matter - the whole field is so enormous, it would take a lifetime to write about every little nuance of it; and then, of course, you'd have to start all over when things changed.