In this post we are going to use JUST.NET library to transform JSON documents to another JSON.
Category: C#
Custom Code-Generator Using ASP.Net Core
In this post we will get overview and generate a basic label code using our database table column that help in development. The main thought behind the sample was to generate the common types of code easily. The Single page application is built with ASP.Net Core & AngularJS, here’s the execution environment & API service is in .Net […]
Palindromes
Dictionary meaning: a word, line, verse, number, sentence, etc., reading the same backward as forward, as Madam Palindrome in the C# language: A palindrome has the same letters on both ends of the string. This means “rotator” is a palindrome, but “advice” is not.
Program to print *
namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int num = 1; for (int i = 0; i < 5; i++) { for (int j = 0; j < num; j++) { Console.Write(“*”); } num++; Console.WriteLine(); } Console.ReadLine(); } } } Output: * ** *** **** *****