×
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
Mkotla
has Published
118
Answers
Intersect Method in C#
Csharp
Programming
Server Side Programming
mkotla
Published on 31-Aug-2018 15:27:17
Use the Intesect method to get the common elements −Create lists −var list1 = new List{99, 87}; var list2 = new List{56, 87, 45, 99};Now, use the Intersect() method to get the common elements from the above list −list1.Intersect(list2);Here is the complete code −Example Live Demousing System.Collections.Generic; using System.Linq; using System; ...
Read More
C# Equivalent to Java Functional Interfaces
Csharp
Programming
Server Side Programming
mkotla
Published on 31-Aug-2018 15:21:55
Equivalent of Java’s Functional Interfaces in C# is Delegates.Let us see the implementation of functional interface in Java −Example@FunctionalInterface public interface MyInterface { void invoke(); } public class Demo { void method(){ MyInterface x = () -> MyFunc (); x.invoke(); } ...
Read More
Sets in C#
Csharp
Programming
Server Side Programming
mkotla
Published on 31-Aug-2018 11:27:11
Sets in C# is a HashSet. HashSet in C# eliminates duplicate strings or elements in an array. In C#, it is an optimized set collectionTo declare HashSet −var h = new HashSet<string>(arr1);Above, we have set the already declared array arr1 in the HashSet.Now set it on the array to remove ...
Read More
Perform Animation on CSS font property
CSS
Web Development
Front End Technology
mkotla
Published on 07-Jun-2018 12:36:01
To implement animation on font property with CSS, you can try to run the following code:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> p { border: 2px solid black; width: 400px; ...
Read More
Usage of hsl() CSS function
CSS
Web Development
Front End Technology
mkotla
Published on 07-Jun-2018 12:22:56
To define colors using the Hue-Saturation-Lightness model (HSL), use the hsl() CSS method.ExampleYou can try to run the following code to implement the hsl() function in CSS:Live Demo<!DOCTYPE html> <html> <head> <style> h1 { background-color:hsl(0, 100%, ...
Read More
Animate CSS column-rule property
CSS
Web Development
Front End Technology
mkotla
Published on 07-Jun-2018 11:09:35
To implement animation on the column-rule 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
Style input type button with CSS
CSS
Web Development
Front End Technology
mkotla
Published on 16-May-2018 17:50:18
The input type button can be a submit button or reset button. With CSS, we can style any button on a web page.You can try to run the following code to style input type button:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> input[type=button] { ...
Read More
Selects every <a> element whose href attribute value ends with ".htm" with CSS
CSS
Web Development
Front End Technology
mkotla
Published on 16-May-2018 16:26:48
Use the [attribute$=”value”] selector to select elements whose attribute value ends with a specified value i.e. “.htm” here.You can try to run the following code to implement the CSS [attribute$="value"] Selector, ExampleLive Demo<!DOCTYPE html> <html> <head> <style> [href$ = htm] { ...
Read More
Set a delay for the CSS transition effect
CSS
Web Development
Front End Technology
mkotla
Published on 16-May-2018 16:05:57
Use the transition-delay property to set a delay for the transition effect with CSS. You can try to run the following code to set a 1-second delay of transition:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: ...
Read More
Usage of CSS [attribute] Selector
CSS
Web Development
Front End Technology
mkotla
Published on 16-May-2018 10:59:33
Use the [attribute] selector to select elements with an attribute, for example, an alt attribute or a target attribute, etc.You can try to run the following code to implement the CSS[attribute] selector, ExampleLive Demo<!DOCTYPE html> <html> <head> <style> img[alt] { ...
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