Part 1: Hello World

Read Line The Console.ReadLine() method is used to get user input. The user input can be stored in a variable. This method can also be used to prompt the user to press enter on the keyboard. C C# is a general-purpose, type-safe, object-oriented programming Read More …

CSS Cheat Sheet

Selectors Universal Selector * {} ID Selector #id {} Class Selector.class {} Type Selectorh1, h2 ,h3 {} Adjacent Sibling Selectorh1 + p {} Child Selectorul > li {} General Sibling Selectorh1 ~ p {} Descendant Selectorp a {} Attribute Selectordiv[attribute=”SomeValue”] Read More …

Data Conversion

In this article, we will convert text to number in multiple versions of SQL Server and will see the difference. I will use four different Data conversion functions (Convert, Cast, Try_Convert &  Try_Cast) to convert Text to Number. Let me explain this with simple examples. Read More …