Sample Output :  

 

Sample Output: 

Sample Output:   

 

  Sample Output:

 

  Sample Output:    

.NET  is a platform independent but not fully platform independent. why because, the code written in any of the .NET Languages are compiled into MSIL code ( microsoft intermediate language code) . The MSIL code is platform independent. Hence to Run a .NET application on any machine we need to install .NET Framework.… Continue Reading IS .NET PLATFORM DEPENDENT OR PLATFORM INDEPENDENT ?

 

VB.NET PROGRAM TO ADD TWO NUMBERS / INTEGERS USING FUNCTION

Sample Output:

Program :

Sample Output : Explanation : In the above program the method static public int Add(int a,int b) , we are declaring method Sum method as Static because Main method is static and we are calling Sum method in Main method without creating object. C# is a Object Oriented Programming Language. And… Continue Reading C# PROGRAM TO ADD TWO NUMBERS / INTEGERS USING METHOD

C PROGRAM TO ADD TWO NUMBERS / INTEGERS USING FUNCTION

  Sample Output :

C# PROGRAM TO ADD TWO NUMBERS / INTEGERS  

Sample Output : original post link

C PROGRAM TO PRINT NUMBERS 1 TO N WITHOUT USING LOOPS

Sample Output :  

C PROGRAM TO PRINT THE ELEMENTS OF ARRAY IN REVERSE ORDER

Sample Output :

C PROGRAM TO FIND LARGEST AND SMALLEST NUMBER IN AN ARRAY original post

Sample Output :

C PROGRAM TO FIND LARGEST / BIGGEST NUMBER IN ARRAY

Explanation : The above program is to find the largest element in the given array of elements. Here we are using declaring the maximum size of array as 25 using #define directive . Sample Output :

In this post we will see the sample code for validating Textbox in C#.Net winforms for indian pan card number using Regular Expression in TextBox Validating Event . In the below code we are using a errorprovider to show if the entered pan number is in wrong / invalid format.… Continue Reading TEXTBOX VALIDATION FOR INDIAN PAN CARD NUMBER USING TEXTBOX VALIDATINGEVENT

There are two ways to remove unused using from our code . Remove Unused Usings option in Visual Studio removes unused using in our code . The first way is : 1) Main Menu – On the Edit menu, point to IntelliSense, point to Organize Usings, and then click Remove Unused Usings. 2) Context Menu –… Continue Reading How To Remove Unused Usings in Visual Studio