TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Content
People
Search
Any Word
Exact Word
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Varesh Tuli(4)
Shweta Lodha(3)
Thiago Vivas(3)
Gayathri Anbazhagan(3)
Scott Lysle(3)
Uday Dodiya(2)
Ashish Bhatnagar(2)
Ziggy Rafiq(2)
Amit Mohanty(2)
Kapil Singh Kumawat(2)
Nitin (2)
Naveenkumar Paramasivam(2)
Kapil Gaur(2)
Juan Francisco Morales Larios(2)
Ankur Mishra(2)
Shekhar Chauhan(2)
Jignesh Kumar(1)
Rasul Huseynov(1)
Hamed Niazmand(1)
Jitendra Mesavaniya(1)
Chetan Sanghani(1)
Sanjay Kumar(1)
Sreenath Kappoor(1)
Ayushi Jain(1)
Alkesh Bijarniya(1)
Gurpreet Arora(1)
Ajay Kumar(1)
Diptiranjan Sutar(1)
Toufik El Azzaoui(1)
Anupam Maiti(1)
Masumi HP(1)
Raju Ahmed(1)
Aashina Arora(1)
Kourosh Tari(1)
Onkar Sharma(1)
Vaibhav Chauhan(1)
Kishan Zalariya(1)
Debasis Saha(1)
Mahalasa Kini(1)
Vijayakumar S(1)
Bhupesh Khandelwal(1)
Neeraj Sharma(1)
Ajay Mor(1)
Faisal Pathan(1)
Joel Champagne(1)
Kishor Bikram Oli(1)
Sagar Pardeshi(1)
Mohammad Irshad(1)
Dhruvin Shah(1)
Valerii Tereshchenko(1)
Satyaprakash Samantaray(1)
Rakesh (1)
Prashant Bansal(1)
Akshay Phadke(1)
Shantha Kumar T(1)
Gowtham K(1)
Sachin Kalia(1)
Saillesh Pawar(1)
Anubhav Chaudhary(1)
Pankaj Kumar Choudhary(1)
Sibeesh Venu(1)
Carmelo La Monica(1)
Steven Woolston(1)
Jeetendra Gund(1)
Kamal Rawat(1)
Shivom Agarwal(1)
Devesh Omar(1)
Veena Sarda(1)
Ramesh Kartik(1)
Kailash Chandra Behera(1)
Hemant Srivastava(1)
Pratiyush Anand(1)
Bechir Bejaoui(1)
Abhimanyu K Vatsa(1)
Richa Garg(1)
Mahesh Chand(1)
Gaurav Chauhan(1)
Santhosh Kumar Jayaraman(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
How to Sort a List of Objects in TypeScript by Property
Nov 09, 2024.
This guide covers sorting lists of objects in TypeScript, with examples for sorting by string, numeric, and date properties. It demonstrates using the sort() method, localeCompare for strings, custom sorting functions for dates and numbers, and multi-property sorting techniques.
Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET Core
Oct 14, 2024.
DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with ASP.NET Core, enabling flexible and dynamic validation for API requests with minimal configuration.
How to Compare Two Objects in C#
Oct 03, 2024.
In this article, we’ll walk through how to create a generic method that can compare the objects of any class, even those with nested collections. We’ll break it down step by step so you can implement this in your projects effortlessly.
Prototype Pattern: Cloning Objects in C#
Sep 18, 2024.
The Prototype Pattern is a creational design pattern that simplifies object creation by cloning existing instances instead of starting from scratch. Ideal for complex objects, it reduces initialization overhead and ensures consistency.
Abstract Factory Pattern: Designing Families of Related Objects in C#
Sep 09, 2024.
The Abstract Factory Pattern provides an interface for creating families of related objects without specifying their concrete classes. It ensures consistency and flexibility in object creation, useful in scenarios like UI design, configuration systems, and data access layers, promoting modular and decoupled design.
Working with Form Objects in JavaScript
Aug 28, 2024.
This HTML document features a user input form that collects first name, last name, email address, and comments. JavaScript functions validate these inputs to ensure fields aren't blank and the email is properly formatted. Valid data is displayed in a new window for user review before final submission.
Leveraging Records for Data Transfer Objects (DTOs) in C# .NET
Aug 12, 2024.
This article explores how to leverage C# records for implementing Data Transfer Objects (DTOs) in .NET. It delves into the benefits of using records for immutable data structures, enhancing code readability, and reducing boilerplate.
Working with Connection Objects in ADO.NET
Jul 22, 2024.
ADO.NET is a set of classes that expose data access services for .NET Framework programmers. A primary feature of ADO.NET is the ability to work with disconnected data. However, working directly with databases is often necessary, and this is where connection objects come into play.
Benefits of Locking and Unlocking Objects in C#
Jul 02, 2024.
Object locking in C# ensures controlled access to shared resources in multithreaded environments, preventing race conditions and maintaining data integrity. By using the lock statement, you can synchronize threads, ensuring thread safety and avoiding deadlocks.
Database Objects Related to Table in Database - Transact SQL Query
Jun 29, 2024.
The SQL query retrieves distinct object names and their types from SYSCOMMENTS and SYSOBJECTS system tables, categorizing objects by their XTYPE values ('P' for procedure, 'V' for view, 'TR' for trigger). It filters results containing 'table_name' in their definitions, providing insights into database object metadata.
Layering Objects using Selection Pane
May 25, 2024.
The "Layering Objects using Selection Pane" tutorial guides users on how to efficiently organize and manage objects in PowerPoint presentations. Learn to control the visibility, order, and arrangement of elements, enhancing your design workflow.
How to Combine Multiple Inline Style Objects in ReactJS
May 24, 2024.
In React, merging multiple inline style objects is essential for flexible styling. Techniques like object spread, Object.assign, array reduce, Lodash merge, conditional merging, and functional style merging offer versatility in styling solutions.
Creating Immutable Objects in C# with Examples
May 07, 2024.
This article explores the concept of immutability in C#, highlighting its benefits and implementation techniques. It covers creating immutable objects using read-only properties, readonly fields, and returning new instances in methods, along with the pros and cons of immutability.
User Defined Objects in JavaScript
Mar 29, 2024.
JavaScript provides a number of pre-defined objects like Array, String, Image, Date etc. which are very useful in web development.
A Guide To Crafting Immutable Objects With C# 10's Init-Only Properties
Mar 06, 2024.
Discover how C# 10's init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates how you can use this powerful feature to create robust and predictable software.
A simplified approach to serializing and deserializing objects in C# 10
Mar 04, 2024.
This comprehensive guide teaches how to streamline data interchange processes efficiently using C# 10 Records. Authored by Ziggy Rafiq.
Data Transfer Objects (DTOs) in C#
Sep 19, 2023.
In the world of software development, Data Transfer Objects (DTOs) are vital for efficient data communication and manipulation. This article explains DTOs in C#, their importance, and practical usage.
Simplifying Data Transfer Objects (DTOs) in C# with Records
Aug 27, 2023.
C# records provide a more elegant and succinct way to define DTOs. In this article, we will explore the benefits of using C# records for DTOs with a concrete example.
C# 12's Records: A Game Changer for Data Objects and Immutable Types
Apr 17, 2023.
C# 12's Records: A Game Changer for Data Objects and Immutable Types
Remove Duplicates From An Array Of Objects Using JavaScript
Feb 09, 2023.
In this article, you will learn how to remove Duplicates from an array of objects Using Javascript.
Generating An Excel File Through A List Of Objects In ASP.NET MVC
Oct 07, 2022.
The purpose of this article is to facilitate the generation of an Excel file from a list of objects passed as parameters, allowing the choice of columns to be displayed and also the merging of cells with the same content and other parameters.
How To Rename Database Objects In SQL Server
Jul 13, 2022.
In this article, you will learn how to rename database objects in SQL Server.
Migrating Limited Objects With Pre-Defined Prefix Using S3 Batch Replication
Feb 18, 2022.
In this article, we will learn how to migrate limited objects with a pre-defined prefix using S3 Batch Replication which can be done at time of configuring the replication rule.
Replicate Existing Objects Using AWS S3 Batch Replication
Feb 16, 2022.
With new AWS update, it is possible to replicate existing AWS S3 objects and synchronize AWS S3 buckets using S3 batch replication.
Building ASP.NET Core Web Application With Dependency Injection Passing Objects Between Layers
Dec 07, 2021.
In this article, you will learn how to build ASP.NET core web application with dependency injection passing objects between layers.
Deleting All Database Objects From Demo Hosting With A SQL Scheduler
Dec 04, 2021.
DB Object Dropping With a SQL Server Job Scheduler From Client's Demo Hosting Environment.
Classes And Objects In Python
Nov 30, 2021.
In this article, you will learn about Class and Object in Python.
Manage AWS S3 Objects In C#
Nov 04, 2021.
Simple Storage Service, or S3 for short, from AWS, provides industry-leading scalability, data availability, security, and performance. We can use S3 to store, retrieve and manage any amount of data, such as websites, mobile applications, backup, and much more.I needed a tool to access and manage my files on Amazon S3, and I decided to build it and here is what have built.
How To Generate Scripts For Database Objects In SQL Server
Jun 25, 2021.
This tutorial will show you various methods to generate scripts for database objects in SQL Server 2019.
Group Array Objects Using JavaScript
May 26, 2021.
In this article, you will learn how to group array objects using JavaScript.
Bring Azure Blob Objects Back To Life
Mar 19, 2021.
This article will guide you on recovering the deleted blob objects from Azure storage.
Best Way To Clone Objects In JavaScript
Jan 12, 2021.
In this article, you will learn about Clone Objects in JavaScript.
Apply Materials, Shaders And Textures To Objects In Unity
Jan 11, 2021.
In this article, you will learn how to apply materials, shaders, and textures to objects in Unity.
How To Build Server Side Objects Like UDF, Stored Procedure, & Trigger In Cosmos DB
Jul 13, 2020.
In this article, we will discuss the UDF, Stored Procedures, and Triggers in Cosmos DB.
Transforming Objects Movement Using C# Scripts In Unity
Jun 16, 2020.
In this article, you will learn how to transform objects movement using C# Scripts in Unity.
Sort Array List Of Objects In C# (IComparable And IComparator)
May 11, 2020.
In this article you will learn how to sort array List Of Objects In C# (IComparable And IComparator).
String Objects in JavaScript
Apr 24, 2020.
In this article, you will learn about String Object in JavaScript.
Creating Custom Objects and Fields Using Schema Builder
Mar 13, 2020.
In this article, I am going to explain how to create custom objects and fields using schema builder.
Creating Custom Objects In Salesforce Lightning Platform
Jan 23, 2020.
In this article , I am explain about how to create an custom object in Salesforce lightning platform
Validate A JSON List Of Objects In ASP.NET Core Using Fluent Validation
Jan 09, 2020.
In this article, you will learn how to validate a JSON list of objects in ASP.NET Core using Fluent Validation.
What is the difference between classes and objects in C#
Nov 19, 2019.
Learn the difference between objects and classes in C# and the relationship between a class and an object.
Destructuring Objects And Arrays In ES6
Jul 17, 2019.
In this article, we will learn about destructuring objects and arrays in ES6. We will also have a look into JavaScript REST operator
Demystifying The Resultant Objects From Service Fabric Cluster Creation - Part Three
Feb 25, 2019.
In this article, I will be going through all objects that result from the Create Service Fabric Cluster template.
Demystifying The Resultant Objects From Service Fabric Cluster Creation - Part Two
Feb 09, 2019.
In this article, I will be going through the details of all the objects that result from the "Create Service Fabric Cluster" template, the default template used by Visual Studio Publish wizard and Azure Portal.
Generic Extension Method To Map Objects From One Type To Another
Jan 28, 2019.
In this article, we will learn about Generic Extension method to map objects from one type to another.
Demystifying The Resultant Objects From Service Fabric Cluster Creation
Jan 24, 2019.
In this article, I will be going through all the objects that result from the Create Service Fabric Cluster template.
How To Use Dynamic To Return Different Objects On Runtime In C#
Dec 05, 2018.
A lot of time you get a requirement to return different kind of object from a single method. Is it possible? Yes there are ways by which you can deliver different objects on run time and dynamic is one of those solution.
How To Return Different Types Of Objects In C# Based On A Input Parameter Type
Nov 24, 2018.
Requirements come like this that you have multiple roles in an organization. Now based on the role you want to return different profiles of same data like for some user you want to show Full data and for some you want to return the medium amount of same data and for some user you want to show only minimal attributes of same data.
Dynamic Objects And Alternatives To Reflection
Apr 08, 2018.
The CodexMicroORM open-source project on GitHub includes several features to help you create fast, concise .NET deliverables. One such feature is implemented in the Performance. cs file and enables dynamic (i.e. run-time) access to properties of any object – faster than what you’d get out of the System.Reflection.Type.
Android Kotlin - Classes And Objects - Part Four
Mar 21, 2018.
In this article, we are going to learn about classes and objects in Kotlin with null values.
Mapping Similar Objects In ASP.NET Core 2.0
Mar 13, 2018.
This article is about mapping similar objects of two different classes with reduced lines of code using ASP.NET Core Automapper.
Some Useful JavaScript Methods, Variable And Objects In Sharepoint 2013
Dec 21, 2017.
In my previous blog, I explored _spPageContextInfo variable properties. This time, I am exploring some SharePoint-provided useful methods and objects in JavaScript.
Comparing Objects In C#
Nov 29, 2017.
In this article, we are going to compare two objects of the same class having collection property or multiple collection properties.
How To Lock Objects In Power BI
Nov 11, 2017.
Sometimes, there is a situation where when we open a report and click on any visuals, it accidentally nudges a chart a little bit to the right or left. Sometimes, by mistake when end user viewing a report, arrangement of visuals scatters little bit. Microsoft rolls out one new amazing feature to resolve this issue and that is Lock Objects in Power BI.
Using Objects Comparer To Compare Complex Objects In C#
Nov 07, 2017.
Objects Comparer framework provides a mechanism to compare complex objects, and allows us to override comparison rules for specific properties and types.
Find Out Creation And Modification Date Of Database Objects Like Tables And Stored Procedures
Sep 07, 2017.
Database Object refers to Table, Stored procedure, View, Function etc.; in other words, all the elements that are created for data storage and manipulation.
Working With Objects In Windows PowerShell
Jun 27, 2017.
Everything in PowerShell is an Object. An Object is a programmatic representation of anything. Each object has properties and methods.
Transforming Objects Using C# Scripts In Unity
Jun 23, 2017.
In this article, learn how to transform Unity object using scripts.
How To Apply Materials, Shaders And Textures To Objects In Unity
Jun 06, 2017.
In this article, I am going to explain how to apply materials, shaders, and textures to objects in unity.
Create 3D Game Objects In Unity
Jun 04, 2017.
In this article, I am going to explain about how to create game object, create assets and revert the object size and apply it.
SharePoint Best Practices - COM Objects Disposal
May 30, 2017.
In this article, we will look for the best practices used for disposing SharePoint COM Component used from managed code.
Cloning Objects In .NET - Part Two
Jan 22, 2017.
In this article, you will learn about cloning objects in .NET.
Cloning Objects In .NET Framework
Dec 26, 2016.
In this article, we will show the ways to clone objects in .NET Framework. We will analyze the pros and cons for each cloning method.
Using Business Objects As Models In MVC
Sep 30, 2016.
This approach enhances code reusability, maintainability, and separation of concerns by clearly defining the role of models in managing the application's core functionality.
Filtering SharePoint Collection Objects Using PnP JavaScript Library
Jun 21, 2016.
In this article, you will learn about filtering SharePoint collection objects, using PnP JavaScript library.
Populating Kendo DropDownLists With Multiple JSON Objects Using ASP.NET WEB API
Feb 24, 2016.
From this article you will learn how to populate Kendo dropdownlist with multiple JSON objects using ASP.NET
WebAPI: Restful CRUD Operations in WebAPI Using ADO.NET Objects and SQL Server
Feb 16, 2016.
Discover how to implement RESTful CRUD operations in WebAPI using ADO.NET and SQL Server. This guide covers setting up a WebAPI project, integrating ADO.NET for database connectivity, and performing Create, Read, Update, and Delete operations.
Sending Complex JSON Objects To ASP.NET MVC View Using JQuery Ajax
Dec 05, 2015.
In this article you will learn about View Model and sending complex JSON Objects to ASP.NET MVC View using JQuery Ajax.
Send Object of Objects From AngularJS to WebAPI
Jul 21, 2015.
In this article I am explaining a really interesting and helpful thing i.e. how you can send object of objects from AngularJS to WebAPI.
Sequence Objects in SQL Server
Jul 06, 2015.
This article explains Sequence Objects in SQL Server.
Find JSON Objects with Same Property and Separate Them
May 28, 2015.
This article explains how to find the objects with the same property from a JSON and separate them to be shown in the UI.
LINQ To Objects View Data According to a Search Criteria In C#
May 11, 2015.
This article shows how to perform searches with LinqToObjects within a collection for the accuracy of the lists of objects.
Object Mappers - Merge Objects Together
Apr 07, 2015.
The idea of an object mapper is quite simple. It's like a merge 2 objects into one single object.
Comments and Objects in JavaScript: Day 3
Nov 28, 2014.
In this article you will learn how to use Web Applications, like comments and objects in JavaScript.
Prototype Objects in JavaScript
Sep 05, 2014.
This article explains Prototype Objects in JavaScript.
Get Missing Objects For a Particular User in a Database
Apr 30, 2014.
In this article I will explain how to get missing objects for a particular user in a database.
Binding Source Objects in WPF
Feb 24, 2014.
This article will drive you through the various available bindings.
Simple Way to Bind List of Objects to View Using MVC
Nov 29, 2013.
This article shows how to show a list of users in a HTML page using MVC. I am assuming you are aware of MVC.
How To: Modify SharePoint 2013 Objects Using REST Calls
Nov 07, 2013.
In this article we will see how to post data into SharePoint using a console application.
Math Objects in JavaScript
Sep 01, 2013.
This article is about the Math object in JavaScript for performing simple and complex arithmetic operations.
Exercice 1 of JavaScript Objects With String
Aug 16, 2013.
This article explains JavaScript Objects with Strings.
Creating and Extending Objects With the Decorator Pattern
Aug 08, 2013.
This articles explains Decorator Patterns, which allows behavior to be added to an individual object, either statically or dynamically, without affecting the behavior of other objects from the same class.
Serialize And Deserialize Objects By Using BinaryFormatter
Apr 09, 2013.
Serializing and deserializing objects using BinaryFormatter in C# is a powerful technique for converting complex objects into a binary format for storage, transmission, or deep cloning. This process allows objects to be saved to a file, sent over a network, or stored in a database. This approach enables data persistence and is commonly used in applications that require object state preservation.
Creating a Lookup From a List of Objects Using Lambda Expression
Jan 19, 2013.
In this article, I describe how to convert a list of objects into a lookup collection.
Static Variables, Static Methods and Objects in C#
Jan 11, 2013.
In this article you will learn what is and how to work with static variables, static methods and objects in C#.
Using IComparable and IComparer to compare objects in VB.NET
Nov 10, 2012.
The .Net framework and especially the System.Collection namespace provides us two built in interfaces witch are IComparable and IComparer interfaces in order to compare two objects.
Build your own Visual Studio: An Application Framework for Editing Objects at Run Time
Nov 09, 2012.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio.
Using LINQ to Objects in Visual Basic
Nov 09, 2012.
This article provides an introduction to employing LINQ to Objects queries to support a simple Visual Basic Win Forms application.
An Application Framework for Editing Objects at Run Time in VB.NET
Nov 09, 2012.
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object treeview, and an object editor.
Parameterizing Property Value For Objects and Checkpoints in QTP in Testing
Sep 21, 2012.
In this article I can discuss how to parametrize a Property Value for Objects and Checkpoints.
Transforming Data Source Objects Into XML Using LINQ: Part 9
Sep 04, 2012.
In this post you will learn how to transform data source objects into XML.
Binding a Control to a Single Item and a Collection of Objects In Windows Store Apps
Aug 22, 2012.
In this article I will explain how to bind a control to a single value or item and a collection of object.s
How To Create A List Of Objects In C#?
Jul 05, 2012.
A list is a collection of items that can be accessed by index and provides functionality to search, sort and manipulate list items. Here we see how to create a list of objects with C#.
Finding Objects in an Object Repository in QTP Tool
Jul 03, 2012.
This article is about how to find objects in an Object Repository in the QTP Tool.
Deleting and Locating Objects in QTP
Jul 02, 2012.
In this article we discuss how to delete and locate the objects in QTP.
Copying, Pasting and Moving Objects in the Object Repository
Jun 28, 2012.
In this article we discuss about how to Copying, Pasting and Moving Objects in the Object Repository.
Adding Test Objects to the Local Object Repository From the Active Screen
Jun 25, 2012.
In this article we discuss how to add test objects to the Local Object Repository from the Active Screen.
Adding Test Objects to a Local or Shared Object Repository
Jun 23, 2012.
In this article we discuss how to add Test Objects to a Local or Shared Object Repository
Test Objects Created by QTP
Jun 15, 2012.
In this article we discuss the test objects created by QTP.
Compare 2 Objects of Generic Class Type in C#
May 11, 2012.
In this article I am going to explain how to compare 2 objects of generic class type in C#.
1
-
100
of
192
<<
1
2
>>
Search
OUR TRAINING