Group clause is used in LINQ for grouping collection into groups based on a specific key.LINQ Group By clause in C# returns a sequence of IGrouping<TKey,TElement> objects. For example if you have a collection of int values then you can group the values based on the integer value.This is a simple example of group by clause.Following […]
Archives for September 2018
ArraySegment in C#
ArraySegment is a generic collection implemented as a structure. ArraySegment is used to create a collection based on an array.We can use ArraySegment in C# if we are using the framework version 4.7.2 . So if you have defined an array as: int[] nums = { 1, 2, 3, 4, 5 }; then you need to […]
Getting started with Python
What is Python? Python is a general purpose,interpreted and high-level programming language.It is object-oriented and dynamically typed programming language.Dynamically typed means that variables are not required to be declared before using them.Instead you directly assign value to a variable.It is called general purpose programming language because of its dynamic nature.Unlike other programming languages such as […]
Difference between ng-bind and ng-model in AngularJs
Data binding is the connection between the source of data and the consumer.AngularJS takes care of lot of data binding features by default. Two of the main data binding directives are ng-model and ng-bind.Both are used for data binding. What is the difference between ng-bind and ng-model in AngularJs ng-model ng-model is used for binding […]
What is Robotic Process Automation(RPA)?RPA Basics
In today’s world you need to work with lots of different applications.Also you would be doing the same repetitive tasks using these applications everyday.In a organisation there are many business processes.These business process often includes same repetitive tasks.These can be automated using Robotic Process Automation. Business Process Automation Business process automation also called digital transformation […]