×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Net Meeting
Tutorix
Login
Packages
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Library
Videos
Q/A
eBooks
Login
Library
Videos
eBooks
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Radhakrishna
has Published
116
Answers
Exit Methods in C# Application
Csharp
Programming
Server Side Programming
radhakrishna
Published on 31-Aug-2018 16:52:44
Environment.Exit() methodThe Environment.Exit() method terminates the process and returns an exit code to the operating system −Environment.Exit(exitCode);Use exitCode as 0 (zero) to show that the process completed successfully.Use exitCode as a non-zero number to show an error, for example −Environment.Exit(1) − Return a value 1 to show that the file ...
Read More
How to set a value to the element at the specified position in the one-dimensional array in C#
Csharp
Programming
Server Side Programming
radhakrishna
Published on 31-Aug-2018 16:49:29
Firstly, set the array −int[] p = new int[] {55, 66, 88, 99, 111, 122, 133};Now, let us say you need to set an element at position 1 −p[2] = 77;Let us see the comple code −Example Live Demousing System; namespace Program { public class Demo { ...
Read More
Merge two sorted arrays in C#
Csharp
Programming
Server Side Programming
radhakrishna
Published on 31-Aug-2018 16:39:23
To merge two sorted arrays, firstly set two sorted arrays −int[] array1 = { 1, 2 }; int[] array2 = { 3, 4 };Now, add it to a list and merge −var list = new List<int>(); for (int i = 0; i < array1.Length; i++) { list.Add(array1[i]); list.Add(array2[i]); ...
Read More
How to get last 4 characters from string in C#?
Csharp
Programming
Server Side Programming
radhakrishna
Published on 31-Aug-2018 12:16:42
Firstly, set the string −string str = "Football and Tennis";Now, use the substring() method to get the last 4 characters −str.Substring(str.Length - 4);Let us see the complete code −Example Live Demousing System; public class Demo { public static void Main() { string str = "Football and Tennis"; ...
Read More
Animate CSS border-bottom property
CSS
Web Development
Front End Technology
radhakrishna
Published on 07-Jun-2018 14:17:23
To implement animation on the border-bottom property with CSS, you can try to run the following code:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 500px; height: 400px; ...
Read More
Usage of CSS grid-auto-flow property
HTML
CSS
Web Development
Front End Technology
radhakrishna
Published on 07-Jun-2018 12:49:29
Use the grid-auto-flow property to include auto-placed items in the grid.ExampleYou can try to run the following code to implement the grid-auto-flow property with CSS −Live Demo<!DOCTYPE html> <html> <head> <style> .container { display: grid; ...
Read More
Animate CSS column-gap property
CSS
Web Development
Front End Technology
radhakrishna
Published on 07-Jun-2018 10:30:25
To implement animation on the column-gap property with CSS, you can try to run the following code −ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 600px; height: 300px; ...
Read More
Set a delay for the start of an animation with CSS
CSS
Web Development
Front End Technology
radhakrishna
Published on 16-May-2018 17:56:45
Use the animation-delay property to set a delay for the start of an animation with CSS:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 200px; ...
Read More
CSS animation-name property
CSS
Web Development
Front End Technology
radhakrishna
Published on 16-May-2018 17:20:51
Use the animation-name property to set the name of the @keyframes animation.You can try to run the following code to implement the animation-name property:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 150px; ...
Read More
Run Animation backward first and then forwards with CSS
CSS
Web Development
Front End Technology
radhakrishna
Published on 16-May-2018 16:39:44
Use the animation-direction property to run animation in first backward and then forward. The property is used with the alternate-reverse animation value to achieve this.ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 150px; ...
Read More
1
2
3
4
5
6
7
...
12
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout