This JSON Tutorial is a quick overview of JSON concepts and its usages.This simple brief JSON Tutorial Will be very beneficial for beginners. JSON stands for JavaScript Object Notation is a language independent lightweight data-interchange format.The syntax of JSON is based upon JavaScript script syntax. JSON objects are used for the exchange of data between […]
Dot net versions | DOT NET Framework Versions History
Table of ContentsDOT NET Framework Evolution | .NET Versions HistoryVersion History Of .NET Framework.NET VersionsDotnet version 1.0Dotnet Version 1.1Dotnet Version 2.0Dotnet Version 3.0Dotnet Version 3.5Dotnet version 4.0Dotnet version 4.5Dotnet version 4.5.1Dotnet version 4.5.2Dotnet version 4.6Dotnet version 4.6.1Dotnet version 4.6.2Summary DOT NET Framework Evolution | .NET Versions History Microsoft has begun the release of.NET Framework in […]
Count the LOC Of .NET application by Visual Studio Professional
Code Metrics is a tool which can be used to find complex and unmaintainable areas within your .NET applications. In my previous article How to use Code Metrics tool to Count Lines of Code (LOC) in .NET application from Visual Studio, we saw the usage of Code Metrics tool. This article will be answer to the questions […]
Visual Studio Count the Lines of Code (LOC) in .NET Application
Lines of Code in application source is one of the most common metrics associated with software development projects, mainly to measure productivity. Table of ContentsHow to Count Lines of Code in Visual Studio?Code Metrics Tool to Count Lines of Code (LOC) in C#Count Lines of Code (LOC) of .NET application in Visual StudioMaintainability IndexCyclomatic ComplexityClass […]
How to add text in a created table in a richtextbox?
In my previous article How to create Table InRichTextBox using C#, I explained in detail how can we insert a table in richtextbox. After that, I was seeing questions from developers that How to add text in a created table in a RichTextBox? This motivated me to write this post in which I will try […]
Table in RichTextBox With Text Wrap In Columns(Cells)
The RichTextBox control permits us to display and edit content such as paragraphs, images, and tables.In one of my earlier posts, How To Make Table in RichTextBox Using C# I have shown samples for creating table in rich text box control. However, there are still some limitations with entering long string values,paragraphs, and images in […]