HI . from where i can have complete c# tutorials ???

ChrisHunter commented: Good response +3

Dani AI

Generated

asked for a complete C# tutorial and pointed to Microsoft’s documentation — a solid starting point. Since this thread is old, note that the C#/.NET landscape has changed (classic .NET Framework -> .NET Core -> unified .NET). For new learning, prefer current Microsoft docs and Learn paths that target modern .NET runtimes rather than archived Framework-only guides.

Recommended learning sequence:

  • Basics: syntax, types, control flow with small console apps.
  • Core language: classes, inheritance, interfaces, structs, generics.
  • Collections, delegates, events and LINQ.
  • Concurrency: async/await and Task-based programming.
  • Data access: Entity Framework Core and migrations (learn ADO.NET basics first if desired).
  • Web: ASP.NET Core (MVC and Web API) instead of legacy Web Forms.
  • Tooling: dotnet CLI, NuGet, debugging, unit testing and source control.

Practical resources:

Notes and cautions: follow tutorials that specify the target runtime (Framework vs .NET Core/.NET). Start with tiny projects (calculator, CSV parser, simple REST API with ASP.NET Core + EF Core/SQLite) to build confidence. Use Visual Studio, Visual Studio Code with the C# extension, or Rider, and keep the dotnet SDK updated.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.