
Search In
C# does not support multiple inheritance because of diamond problem. To understand it better, just take an example.
Let's consider there is a class 'X' and it has two subclasses or derived classes 'Y' and 'Z'.
In this blog we illustrate how to get the late binding using reflections for this firstly we need to understand "what is reflection" and "what is late binding".
What is reflection?
Reflection is basically read the assembly cont
Jagged array is an array of array it means jagged array is a collection of homogeneous arrays. An arrays inside the jagged array are of different length. As the jagged array contains the arrays therefore its collection of homogeneous reference type e
A Dependency property is a property which allow the analytical code to modify the properties of an object to minimize a data necessities by giving a powerful reporting system about to change of a data in a particular way.
In dot net generally we ha
Race condition is arise when multiple threads are accessing the shared data and they try to modify this shared data at the same time. The reason for arising a race condition is that we are unable to know the order of accessing a shared data among the
C# .Net : XML Serialization of DataSet
XML Serialization require XmlSerializer class which is derived from System.Xml.Serialization.
Example to demonstrate XML Serialization of DataSet :-
using System.IO;
namespace DemoAp
Max aggregate operator is used to find the largest item from a collection.
Exapmle:-
In the below example we created a complex type collection for an Employee. This Employee collection contains EmpId, EmpName and Age. We need to find a maximum empl
IComparable interface is used for sorting of list of objects. It can be similar to Array.Sort() method but the difference is that it provides customization on sorting of objects.
We can sort a list of string or integer by simply calling List.Sort()
Hi, guys, today will learn how to pass data from one view controller to another in iOS
1. First & foremost you have to analyse the type of data that is in your first ViewController that you have to pass ahead to the next view controller.
2. Supp
Hiii guys,
Today I'll be demonstrating how to pick any image via Gallery or via Camera in iOS ObjecticeC
1. Create a ViewController & add these two delegates to it-UIImagePickerControllerDelegate and UINavigationControllerDelegate.
2. Now
