Founder C# Corner. Founder & CEO Mindcracker Inc. Investor, Advisor, Board member of several startups and non profit foundations. Try to implement emerging technologies when trying to solve the next problem.
This article explains how to use the WPF Button control in XAML and C#.
How to access a collection type in your XAML code.
Understand what is type Inference in C# and how to implement it in your code.
Turn off automatic updates on Windows 10
An Icon is a bitmap image (.ico file) that is displayed in the top left corner of a Window. This article discusses how to create and use Icons in WPF applications.
Multiline TextBox alignment best practice.
In my previous article, "Mindset of a Growth Community," I talked about a community and the thought process behind running a community. In this article, my focus is how C# Corner members ...
WPF Multiple Document Interface (MDI) Open source project on CodePlex.
Check out this free project, WPF Themes on CodePlex. It provides a collection of themes to be used in WPF projects.
Watch this video to learn about the future of C# and Visual Basic .NET.
IE 9 beta is available to public now. Check out these all new features.
Many people have been asking me this question. They can't install SharePoint 2010 on a 32-bit Windows 7 or XP. This is because SharePoint 2010 does not support any 32-bit OS.
If you used ODBC data sources to connect to databases in SharePoint, you will see they are not available in SharePoint 2010.
I was planning to install SharePoint Foundation 2010 on a machine with SQL Server 2000.
If you plan to install SharePoint Foundation 2010 on same machine with WSS 3.0 or SharePoint Foundation 2007, STOP.
The C# If-Else statement is a fundamental control structure in C# programming that allows you to create conditional logic in your code. It enables your program to make decisions based on certain co...
This article explains how to get the input from the console using ReadLine.
List.BinarySearch() method searches a List of collection using binary search algorithm. The code example shows how to search a list items using C#.
How to implement partial method in C#. A partial method can be used as a definition in one part while another part can be the implementation.
This code snippet shows how to copy and concatenate strings in C# and .net core. The Concat method adds strings (or objects) and returns a new string. Using Concat method, you can add two strings, ...