4
Answers

C# Corner

Photo of Mahesh Chand

Mahesh Chand

Oct 01
717
1

What is C# Corner and can you tell me its history?

Answers (4)

10
Photo of Jignesh Kumar
29 39.6k 2.9m Oct 01

C# Corner is one of the most recognized online community for software developers and IT professionals, focusing strongly on Microsoft technologies such as C#, .NET, Azure, SQL Server, and related tools.

It offers a platform for learning, knowledge sharing, and networking within the tech industry. 

The site has a wide range of features :

  1. Articles
  2. Blogs
  3. News
  4. Tutorials
  5. Forums
  6. Conference & Events
  7. Job Postings
  8. An extensive collection of technical resources

History of C# Corner: 

Founder: Mahesh Chand

Year of establishment: 1999

Total Members: 3,062,418

Recognition: Every quarter, C# Corner announces its MVPs (Most Valuable Professionals), recognizing outstanding contributors who have demonstrated exceptional knowledge sharing, community involvement, and technical expertise across the platform.

Accepted
9
Photo of Baibhav Kumar
342 4.5k 23.5k Oct 01

C# Corner is a leading global online community for software and data developers. This platform offers a wide range of resources, including tutorials, articles, news, blogs, videos, eBooks, skill challenges, certifications, and forums, where developers can learn, share knowledge, and interact with other members of the community. C# Corner also organizes conferences, webinars, and live sessions. Founded in 1999 by Mahesh Chand, it now has a community of over 3 million+ IT professionals worldwide, with nearly 35 million unique visitors per year and more than 200 MVPs. Contributors to the platform are rewarded with Sharp Tokens through a partnership with Sharp Reward. Embracing the WEB3 ecosystem, C# Corner provides an opportunity for its contributors to learn, earn, and grow in a WEB3 universe.

7
Photo of Sharp GPT
Tech Writer 492 0 Oct 01

Of course! C# Corner is a popular online community for software developers, particularly those interested in the Microsoft technology stack. It serves as a platform for sharing knowledge, discussing various tech topics, and accessing resources related to programming with a focus on C# and Microsoft technologies.

The history of C# Corner dates back to the early 2000s when it was founded by Mahesh Chand. Initially, it started as a small community dedicated to C# programming but gradually expanded to cover a wider range of Microsoft technologies including .NET, Azure, SQL Server, and more. Over the years, C# Corner has grown into a vast community-driven platform with millions of members, offering articles, tutorials, forums, and webinars to support developers in their learning and growth.

Here's a simple C# code snippet to illustrate how you might interact with the C# Corner API for fetching articles:


using System;
using System.Net;
using Newtonsoft.Json;

public class CSharpCornerAPI
{
    public static void FetchArticles()
    {
        string apiEndpoint = "https://api.c-sharpcorner.com/articles";
        
        using (WebClient client = new WebClient())
        {
            string jsonResult = client.DownloadString(apiEndpoint);
            
            dynamic articles = JsonConvert.DeserializeObject(jsonResult);
            
            foreach (var article in articles)
            {
                Console.WriteLine($"{article.Title} - {article.Author}");
            }
        }
    }
}

class Program
{
    static void Main()
    {
        CSharpCornerAPI.FetchArticles();
    }
}

This code snippet demonstrates a simple way to fetch and display articles from the C# Corner API. By understanding and utilizing such APIs, developers can integrate valuable content from C# Corner directly into their applications, enhancing their knowledge base.

If you have any specific technical questions or need further information on C# Corner or related technologies, feel free to ask!

3
Photo of Muhammad Imran Ansari
238 7.8k 332.4k Oct 01

C# Corner is a popular online community and platform for software developers, particularly focused on .NET technologies, including C#, ASP.NET, MVC, Azure, and more. It offers developers a wide range of resources, including articles, tutorials, videos, forums, and job listings. It has grown into a hub for professional development, networking, and learning, particularly in the .NET ecosystem.

C# Corner was founded in 2000 by Mahesh Chand. It started as a small community and platform for sharing knowledge about C# and .NET technologies. However, over time, C# Corner began offering content on a broader range of technologies related to Microsoft development, including ASP.NET, SQL Server, WPF, Silverlight, Windows Forms, Xamarin, and cloud computing with Azure. The community also started to involve in-person and virtual developer conferences and events worldwide, which bring together speakers, developers, and experts from across the tech industry.
Today, C# Corner boasts millions of members worldwide, with thousands of contributors publishing content across a variety of technical topics.

Next Recommended Forum