Related resources for Collection
  • Using Span<T> To Improve Performance Of C# Code10/21/2024 10:13:00 AM. To enhance application performance, reducing IO calls and utilizing stack allocation is crucial. Leveraging value types and the Span&lt;T&gt; structure in C# allows efficient memory management and imp
  • Collections in C#10/1/2024 9:06:58 AM. This article describes Collections in C#. A collection is a way to create and manage groups of related objects. The group of objects can grow and shrink dynamically depending on the requirements in th
  • Nested Collection Models in MVC to Add Multiple Phone Numbers - Part 19/27/2024 10:08:34 AM. This article explains how to create an MVC application using the Nested Model concept, allowing users to add or remove multiple phone numbers for an employee. It covers database setup, model creation,
  • Using C# 12 with Clean Code Practices9/21/2024 3:37:12 PM. Learn how to write cleaner, more maintainable code with C# 12 features such as primary constructors and improved pattern matching. This article explores practical examples and tips for applying clean
  • Exploring the Performance Boosts in .NET 99/20/2024 4:22:58 AM. .NET 9 introduces key performance improvements, including Native AOT for faster startup times and reduced memory usage, optimized garbage collection, enhanced threading for multicore systems, and HTTP
  • Why We Should Prefer To Use Dispose Method Than Finalize Method9/19/2024 6:09:09 AM. This article explores the benefits of Dispose for efficient resource cleanup, improved performance, and reliable memory management in C#. Discover best practices for handling managed and unmanaged res
  • Web Scraping using BeautifulSoup in Python9/3/2024 6:34:33 AM. Discover the basics of web scraping, HTML parsing, and how to extract data from websites efficiently. Ideal for beginners and professionals, this tutorial walks you through the process step by step wi
  • Working with Form Objects in JavaScript8/29/2024 4:32:40 AM. 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&#39;t blank and the ema
  • Delete Site Collection in SharePoint Online And Office 365 Using Nintex Workflows8/23/2024 6:03:47 AM. This article guides you on how to delete a site collection in SharePoint Online and Office 365 using Nintex Workflows. It covers the step-by-step process of configuring the &quot;Office 365 delete sit
  • How To Enable App SideLoading On Your Non-Developer Office 365 Site Collection On Azure8/22/2024 11:06:14 AM. Learn how to enable App SideLoading on your non-developer Office 365 site collection using SPO Management Shell. Follow step-by-step instructions to deploy SharePoint apps directly to your site, bypas
  • Python Data Types and Collections8/22/2024 5:29:00 AM. Explore Python&#39;s essential data types and collections in this comprehensive guide. Learn about fundamental types like integers, floats, and strings, as well as advanced collections such as lists,
  • SharePoint Online - Scripting Capabilities, Why SharePoint Framework8/21/2024 9:33:33 AM. Custom scripting in SharePoint Online allows running custom scripts to manipulate data and the DOM. By default, it&#39;s disabled on sites like root and MySites. Enabling it via the SharePoint Admin C
  • How to Set or Update Webpart Property Using Powershell Script in SharePoint8/20/2024 7:51:05 AM. In our project, we needed to update a web part property across multiple pages in a production environment. Manual changes were impractical, so we created a PowerShell script to automate the process. T
  • Brief Overview of Collection Types in C#8/20/2024 7:10:00 AM. Learn how each collection type is used in C# programming for efficient data storage and manipulation. Perfect for beginners and developers looking to strengthen their .NET skills.
  • Host-Named Site Collections in SharePoint8/2/2024 8:08:23 AM. This article explains host-named site collections in SharePoint, detailing their advantages, limitations, and the process for creation. Host-named site collections provide unique DNS names, facilitati
  • Implementing Dependency Injection In .NET Core Console Applications7/31/2024 3:56:07 AM. Learn how to implement Dependency Injection (DI) in .NET Core Console applications. Start by adding the Microsoft.Extensions.DependencyInjection package, then register services using ServiceCollection
  • The AbstractList Class and ArrayList Class in Java Collection7/29/2024 6:19:14 AM. The AbstractList class in the Java Collections Framework provides a skeletal implementation of the List interface, enabling developers to create custom list implementations with ease. It offers defaul
  • Understanding Iterators in C#7/28/2024 9:09:18 AM. In this article, we will Understand key concepts, such as iterator methods and custom iteration patterns, and enhance your C# programming skills with practical examples and tips.
  • Understanding and Using Scope in .NET Core7/26/2024 5:48:49 AM. In .NET Core, dependency injection (DI) manages service lifetimes with three scopes: Transient (new instance per request), Scoped (one instance per request), and Singleton (one instance shared across
  • Understanding flatMap in Java7/23/2024 7:42:33 AM. The flatMap operation in Java is a powerful tool for transforming and flattening collections. Learn about Java&#39;s `flatMap` operation in this article, which maps each element to a stream and flatte
  • Fluent UI (Collection of UX Frameworks from Microsoft )7/23/2024 4:13:03 AM. This article is about Fluent UI, a Microsoft framework for building user interfaces. Fluent UI is a Microsoft UX framework for creating consistent, accessible, and customizable components across platf
  • Vector Class and the Stack Class in Java Collections7/19/2024 6:24:12 AM. The Vector and Stack classes in Java Collections Framework provide essential tools for managing dynamic arrays and last-in, first-out (LIFO) stacks, respectively.
  • HashSet Class and TreeSet Class in Java Collections7/19/2024 6:22:36 AM. Explore the HashSet and TreeSet classes in Java Collections Framework. Learn how HashSet uses hashing for fast access and TreeSet maintains sorted order through a Red-Black tree.
  • Dependency Injection in ASP.NET Core7/16/2024 5:41:43 AM. Dependency Injection (DI) in ASP.NET Core enhances modularity, testability, and maintainability by providing class dependencies externally via the built-in Inversion of Control (IoC) container. Config
  • Using Find Instead of FirstOrDefault with Collections in C# .NET7/15/2024 8:10:04 AM. When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable&lt;T&gt;, while Fin
  • How to Create Multiple Filters in Gallery using Collection7/3/2024 8:56:06 AM. Filtering gallery on multiple selection is most demanding user-friendly functionality which could be expected by any business. In this post, we&#39;ll look at how to design and implement multiple filt
  • How to Define a Custom Connector Using a Postman Collection7/2/2024 7:13:54 AM. Learn to convert Postman collections into custom connectors for Microsoft Power Platform. Export your collection in v2.1 format, import it into Power Automate or Power Apps, configure with host and ba
  • Mastering LINQ: TakeWhile and SkipWhile in C# .NET7/1/2024 7:03:12 AM. Explore LINQ&#39;s TakeWhile and SkipWhile methods in C#, which enhance data querying by conditionally including or excluding elements based on predicates. Learn how to use these powerful methods to p
  • Set Interface and Map Interface in java.util Package6/26/2024 5:12:41 AM. The Set Interface and Map Interface within the java.util package are fundamental components of Java&#39;s Collections Framework. The Set Interface defines a collection that does not allow duplicate el
  • Microsoft Forms: New Features in 20246/26/2024 4:58:19 AM. Microsoft Forms has introduced powerful updates in 2024, including real-time data sync with Excel, a Practice Mode for learning reinforcement, a new Forms app for easy survey creation, and the ability
  • Understanding the Data Structure Behind HashMap in Java6/20/2024 9:52:15 AM. Explore the intricate workings of HashMap in Java, a pivotal data structure in the Java Collections Framework. Understand its mechanism of storing key-value pairs using hashing, handling collisions th
  • Garbage Collection (3), C# using statement --- Language support for Dispose6/19/2024 7:12:51 AM. This article will discuss the C# using a statement. Garbage collection (GC) in computer science reclaims unused memory automatically. Invented by John McCarthy in 1959, GC simplifies memory management
  • Learn Garbage Collection in Python6/17/2024 4:45:53 AM. Discover how garbage collection in Python manages memory automatically, preventing memory leaks and optimizing performance. Learn about reference counting, the role of the garbage collector, handling
  • Garbage Collection (2), Manage UnManaged Code6/17/2024 4:18:35 AM. Discuss the garbage collection with unmanaged code: How to manage the unmanaged code in .NET, Dispose pattern
  • Garbage Collection (1), Manage Managed Code6/17/2024 4:08:55 AM. Discuss the garbage collection with managed code: what is the process of the memory management of .NET in this article, while in (2) I will discuss How to manage the unmanaged code in .NET
  • Streamlining Collection Chunking in .NET 6: .Chunk vs. Methods6/16/2024 8:46:47 AM. .NET 6 introduced several new features and enhancements that streamline development in C#. One such feature is the . The chunk method, which provides a simple way to split collections into smaller, ma
  • Create Repeating Section In PowerApps New Form - Step By Step - Part One6/12/2024 9:40:57 AM. This article guides you through creating a Repeating Section in PowerApps forms for New and Edit forms. Learn to store data in SharePoint lists, manage form navigation, and enhance user experience wit
  • Garbage Collection - Dispose Vs Finalize And IDisposable Pattern6/12/2024 6:51:19 AM. Explore Finalize, Destructor, IDisposable pattern in C# for managing unmanaged resources. Learn about memory management, Garbage Collector behavior, and IDisposable interface. Implement IDisposable fo
  • Frozen Collections in .NET 86/10/2024 7:00:56 AM. Frozen Collections in .NET 8&quot; explores the introduction of frozen (immutable) collections in the latest .NET framework. These collections offer performance optimizations and enhanced memory manag
  • Get SharePoint Role Definition ID's6/5/2024 8:11:42 AM. Retrieve SharePoint Role Definition IDs to manage access levels efficiently. Use SharePoint APIs or PowerShell to access, view, and modify permission settings for users and groups within your SharePoi
  • Optimizing Memory Management in C#6/4/2024 7:23:27 AM. In this article, we will learn Memory management and optimization are crucial aspects of C# development, especially for applications that demand high performance and efficient resource utilization.
  • Custom Collection Classes in C#6/3/2024 10:09:23 AM. Learn how to create a custom collection class in C#, utilizing the Customer class with attributes. Implement and manage customer data with CollectionBase, including methods for adding, removing, and a
  • Mongo DB Indexing Strategies with Real-time Scenarios6/3/2024 9:45:25 AM. MongoDB, a scalable NoSQL Database, uses indexing to optimize query performance. Indexing involves creating data structures to expedite data retrieval operations on collections, enhancing efficiency.
  • The Simplicity of the New Terse Syntax [ Collection Expressions ]6/3/2024 8:08:47 AM. Explore the elegance of the latest terse syntax for collection expressions, offering unparalleled simplicity in programming. Dive into efficient coding techniques, optimized syntax, and enhanced reada
  • Learn About Observer Design Pattern5/22/2024 7:05:37 AM. The Observer Design Pattern is a behavioral design pattern where an object, called the subject, maintains a list of its dependents, called observers, and notifies them of any state changes, typically
  • Getting The User Details In Microsoft PowerApps5/21/2024 9:43:03 AM. Discover how to efficiently gather user details within Microsoft PowerApps. Learn effective data collection techniques, optimize form submissions, and enhance app development by capturing and managing
  • Performance Tip - For Vs Foreach In Microsoft .NET5/16/2024 8:32:19 AM. Consider loop efficiency: &#39;for&#39; is faster for arrays, &#39;for each&#39; for collections. Optimize performance by choosing the right loop type in .NET programming.
  • Get All Installed Fonts in C#5/16/2024 5:50:57 AM. To retrieve all installed fonts in C#, you can use the InstalledFontCollection class from the System.Drawing.Text namespace. This class provides access to the fonts installed on the system. By creatin
  • All About BI Tools and Types to Make You Ready for Next Action5/13/2024 11:13:42 AM. This article is for you if you are getting your steps in BI Tech Stack. Here in this article, you will learn the basics of BI with its types.
  • Migrate to Azure Monitor Agent from Legacy Log Analytics Agent5/9/2024 5:23:04 AM. The Log Analytics Agent (OMA/MMA) will be decommissioned in August 31st of 2024. Users and Clients have to migrate to Azure Monitor Agent (AMA) before that. This article discusses on the steps to be f
  • CLR Internals - Process and Application Domain5/8/2024 10:09:23 AM. In this article, you‘ll drill deeper into the details of how an assembly is hosted by the CLR and come to understand the relationship between application domain (appdomain) and processes.
  • Dictionary in .NET C#: Syntax, Methods, and Example5/7/2024 11:50:00 AM. In C#, a dictionary is a generic collection that holds elements as pairs of keys and values. The Non-Generic Hashtable collection and the Generic Dictionary operate extremely similarly.
  • Get All SharePoint Site Collection Usage Details Using Graph API5/6/2024 11:22:22 AM. In this article, we will see the steps to check all the SharePoint site collection usage details using Graph API. The process is quite simple; just follow along.
  • Understanding Garbage Collection in .NET Core5/5/2024 8:41:16 AM. Garbage collection (GC) is a fundamental aspect of memory management in modern programming languages like C#. In the context of .NET Core, the GC system plays a crucial role in automatically reclaimin
  • .Net Architecture And .Net Framework Basics5/5/2024 8:25:53 AM. .NET architecture encompasses the Common Language Runtime (CLR) and Common Type System (CTS), executing Intermediate Language (IL) through Just-In-Time (JIT) compilation.
  • HashSet .NET C#: Usage, Methods, and Example5/3/2024 8:40:37 AM. A hash set is an unordered list of distinct elements in C#. In.NET 3.5, this collection is released. When we wish to stop duplicate pieces from being added to the collection, we typically utilize it.
  • Exporting and Importing Site Collection Term Stores In SharePoint5/2/2024 9:37:26 AM. Looking to streamline your SharePoint management? Learn how to efficiently export and import Site Collection Term Store Groups! ?? From exporting your Term Store Groups for backup or migration purpose
  • Implement Many-To-Many Relationship in C# Class5/1/2024 11:13:30 AM. Learn to implement a many-to-many relationship in C# using collections and junction tables. Explore how to model associations between entities, use LINQ queries for retrieval, and leverage tools like
  • Introducing RX For Collections4/30/2024 10:45:39 AM. Discover the power of Reactive Extensions (Rx) for efficient and responsive collection handling. Learn how Rx enables event-driven, asynchronous data processing, transforming collections into dynamic,
  • Preparing .NET Interview - Part 1 (Framework)4/29/2024 11:56:13 AM. Preparing for a .NET interview (Part 1 - Framework) involves understanding key concepts like CLR, BCL, assemblies, and memory management. Familiarize with C#, garbage collection, reflection, and .NET
  • Learn Parallel Programming in .NET4/29/2024 9:57:15 AM. .NET parallel programming techniques like Task Parallelism and Concurrent Collections. Utilize BlockingCollection to manage concurrent tasks. Explore Task.Factory.StartNew for task creation, Collectio
  • Exploring the BlockingCollection<T> Class in .NET4/25/2024 6:56:24 AM. In the world of concurrent programming in .NET, developers often encounter scenarios where multiple threads need to communicate and synchronize access to shared data structures. In this article, we&#3
  • ConcurrentBag<T> in C#: Thread-Safe Collection Guide4/23/2024 8:49:54 AM. In the world of concurrent programming in C#, managing data safely across multiple threads is a paramount concern. In this article, we&#39;ll delve into ConcurrentBag&lt;T&gt;, its usage, and provide
  • Office 365 - SharePoint Central Admin Configuration4/23/2024 8:25:38 AM. Configuring SharePoint 2013 Central Administration in Office 365 involves settings for site collections, service applications, timer jobs, and health analysis. It manages farm-wide settings and servic
  • ConcurrentBag<T> in C#: Thread-Safe Collection for Concurrency4/23/2024 5:39:26 AM. Concurrent programming in C# often involves managing shared data among multiple threads. In this article, we&#39;ll delve into what ConcurrentBag&lt;T&gt; is, how it works, and when to use it.
  • Site And Site Collection Retention Policy In SharePoint4/18/2024 10:01:40 AM. Learn how SharePoint 2013&#39;s Site Retention Policy helps manage site lifecycles, including closure and deletion. Understand Site Policies, apply them to sub-sites, set deletion and closure events,
  • Working With Retention in SharePoint4/18/2024 8:26:18 AM. In this article we can create two site collection level retention policies and associate these polices with two site collection content types.
  • Create Enterprise Search Center Site Collection in SharePoint4/18/2024 8:25:23 AM. Empower your organization with an Enterprise Search Center Site Collection in SharePoint 2013 Online. Enhance content discovery, refine queries, and customize results for efficient information retriev
  • Create Community Site Collection in SharePoint Online4/18/2024 8:19:25 AM. Establish a collaborative hub with a Community Site Collection in SharePoint 2013 Online. Engage users through forums, blogs, and announcements. Facilitate document sharing and seamless member managem
  • Delete a Site Collection in SharePoint4/18/2024 8:18:38 AM. In this article I would like to share the procedure to delete a site collection using Central Administration in a SharePoint 2013 web application.
  • Types of Modern Site Collections - SharePoint4/18/2024 8:13:11 AM. This Article demonstrate what actually SharePoint Modern Site Collection is and Various types of Modern Site Collection that can be used as per the business needs.
  • Create Site Collection in SharePoint 2013 Online4/17/2024 8:05:45 AM. Learn to swiftly create site collections in SharePoint 2013 Online using SharePoint Online Admin Center. Customize with various templates, manage permissions, and configure settings effortlessly. Acce
  • Plant Disease Classifier with Azure AI Custom Vision and Blazor4/17/2024 8:02:26 AM. This concise article explores the innovative integration of Azure AI Custom Vision service with a Blazor web application to create a sophisticated Plant Diseases Classifier model. The article highligh
  • Learn About Collections in Rust4/17/2024 7:41:13 AM. In this article, we will explore all types of collections in the Rust Programming Language. Collections are essential in Rust for efficient data management. Arrays hold fixed-size elements, vectors of
  • Exploring Frozen Collections in .NET 8 With Benchmarking4/14/2024 5:32:01 AM. Frozen Collections is a new .NET 8 feature that can be used to create Dictionaries and Sets for faster read operations when you don’t need to make changes after the creation. In this article, I presen
  • Postman - Setup Workspace And Collection4/9/2024 6:34:12 AM. Swagger (OpenAPI) defines REST APIs for both machines and humans. This article explores integrating C# special comments into Swagger for clearer API documentation and utilization in .NET and .NET Core
  • Learn Memory Management in JavaScript4/8/2024 6:13:41 AM. JavaScript employs automatic memory management through garbage collection, eliminating manual memory allocation and deallocation. Here&#39;s how it works and considerations for efficient coding.
  • Dynamically Getting Stored Procedures Collection From SQL Server Using C#4/4/2024 9:32:40 AM. In this article, we will learn how to dynamically fetch stored procedures from Microsoft SQL Server using C# for enhanced database interaction. This tutorial explores C#&#39;s capabilities to programm
  • SharePoint Permissions: Part 2 of 34/3/2024 11:03:39 AM. SharePoint Permissions: Part 2 of 3 covers access control, user roles, list and document library permissions, item-level permissions, inheritance, and management of SharePoint groups for effective gov
  • Difference between IEnumerable vs IQuerable4/1/2024 6:34:21 AM. Understand the difference between IEnumerable and IQueryable in .NET collections. While IEnumerable is suitable for in-memory collections, IQueryable allows for optimized queries, especially in scenar
  • SQL Server Data Collection And Management Data Warehouse3/28/2024 10:41:49 AM. Explore the built-in SQL Server Data Collection tool for system monitoring. Learn setup steps for Management Data Warehouse, access control via roles, and monitoring data collection using SQL Agent an
  • Learn about Queue in C# with examples3/21/2024 8:21:29 AM. In this article, we will explore Queue data structure in C#, facilitating FIFO (First In, First Out) operations. Utilize methods like Enqueue, Dequeue, and Peek for efficient data manipulation.
  • Mastering Data Mining Techniques 3/18/2024 5:29:30 AM. Data mining uncovers hidden patterns in vast data reserves, guiding decision-making. Key preprocessing steps ensure data quality, from collection to transformation, optimizing insights for impactful a
  • What is Use of ‘Using’ Statement in .NET?3/15/2024 9:15:56 AM. In this article, we will cover What is the use of the ‘Using’ statement in .NET. The &#39;using&#39; statement in .NET ensures efficient resource management, prevents memory leaks, and promotes cleane
  • Why Any() Outperforms Count() in Collection Checks3/6/2024 8:50:13 AM. Efficiency in programming is vital, and choosing the right method for tasks is crucial. Explore why Any() often outperforms Count() in specific scenarios with illustrative examples in C#.
  • Fundamentals of Unit Testing: Understand CollectionAssert() in Unit Testing3/5/2024 10:37:39 AM. In this article we will talk about one important function of unit testing called CollectionAssert().
  • Creating Cascading Dropdowns Using Collections in PowerApps 3/2/2024 10:50:25 AM. We will explore how to create cascading dropdowns using collections in PowerApps without relying on SharePoint lists. Follow the steps to set up and add data to collections, enabling dynamic user inte
  • Understanding and Managing Access Control in SharePoint2/29/2024 9:20:32 AM. Understanding and Managing Access Control in SharePoint in detail step by step , such as Grant Permissions, Create Group ,Grant/Edit User Permissions ,Remove User Permissions , Modify Permissions ,Che
  • Learn SharePoint In Series - Part One - Introduction2/18/2024 5:21:23 AM. Learning SharePoint&quot; series aims to transform beginners into SharePoint developers. It covers SharePoint&#39;s definition, history, evaluation, and a basic comparison with other platforms. The ar
  • Learn SharePoint Series - Part Three - Site Collections2/15/2024 9:57:22 AM. This article is the third part of the SharePoint series, focusing on Site Collections in both SharePoint Online and On-Premises. It discusses the importance of Site Collections as top-level sites, the
  • Creating Collections from SharePoint Lists in PowerApps2/15/2024 9:25:09 AM. Learn how to utilize collections in PowerApps to manage data within your application, especially useful for scenarios where users may be offline or have limited connectivity. Discover the advantages o
  • How to Backup/Restore MongoDB Database and Collections2/11/2024 9:32:02 AM. Backing up and restoring a MongoDB database and collection with command definition explanation and example as well.
  • Dynamics 365 - Execute Multiple Requests2/9/2024 6:57:33 AM. Sometimes, in projects, we have a requirement where we need to undertake the actions at once on numerous records in the system over an entity. In this article, we will see how to achieve that.
  • How to Create Site Collection in SharePoint Online?2/5/2024 11:16:42 AM. How to create a site in SharePoint online. This guide outlines steps from signing in to the SharePoint Admin Center, initiating the creation process, configuring settings, reviewing, and confirming.
  • Implementation of Collection View in .NET MAUI2/2/2024 5:29:04 AM. In this article, I will explain MAUI Collection View implementation using Visual Studio 2022. .NET MAUI Collection View is a view for presenting lists of data using different layout specifications. Co
  • Array Operations in JavaScript1/17/2024 8:48:51 AM. Arrays are fundamental in JavaScript, allowing storage and manipulation of collections. Common operations include element access, addition/removal, iteration, built-in methods (map, filter, reduce), s
  • Concurrent Collections in C#1/12/2024 7:24:55 AM. Unlock the power of concurrency in C# with a deep dive into concurrent collections. From ConcurrentDictionary for thread-safe dictionaries to BlockingCollection for versatile blocking operations, mast
  • Understanding Collection Types in C#1/9/2024 4:35:29 AM. Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnece
  • Understanding Dictionary in C#1/3/2024 9:47:41 AM. In this article, we will learn about the potential of C#&#39;s Dictionary collection type with this comprehensive guide. Learn essential operations, iterate through key-value pairs, and explore advan
  • What is Collection Expressions in C# 12?1/3/2024 7:20:15 AM. Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This fr