Resources  
  • How to Launch a New Crypto Token on a DEX: Step-by-Step GuideJul 01, 2025. Planning to launch your crypto token on a decentralized exchange like Uniswap or PancakeSwap? Learn the best DEX launch strategies, from adding liquidity safely and avoiding bots to locking liquidity and protecting your token from rug pulls and price volatility.
  • Combine Two Collections Without Duplicates in Power Apps Canvas AppJun 27, 2025. Learn how to combine two collections in a Power Apps Canvas App without duplicates using simple logic and functions like Collect, ClearCollect, and Distinct for clean, efficient data merging.
  • Mastering Trigger Conditions in Power Automate Flows: Simplify Your Flow Logic Like a Pro! 🔥Jun 16, 2025. This article explores Trigger Conditions in Power Automate, explaining what they are, why they matter, and how to use them effectively, especially in SharePoint-based flows. Learn with real-world examples, syntax tips, and best practices to build smarter, more efficient workflows.
  • Deploying an NFT Collection on Base: Step-by-StepJun 12, 2025. Learn how to create, mint, and sell a full ERC-721 NFT collection on Base blockchain—a fast, low-cost Ethereum Layer 2—using Hardhat, OpenZeppelin, and IPFS in this beginner-friendly step-by-step guide.
  • 🎲 How to Generate a Random Number or List of Random Numbers in Power Automate DesktopJun 10, 2025. Learn how to generate single or multiple random numbers in Power Automate Desktop for testing, simulations, or dynamic inputs—perfect for RPA, Excel automation, chatbots, and Indian IT project scenarios.
  • How Indexed Columns Improve SharePoint List SpeedJun 04, 2025. Indexed columns in SharePoint help improve list and library performance by allowing faster filtering and searching, especially in large lists with thousands of items.
  • What is Debouncing in JavaScript?Jun 03, 2025. You're typing something into Google search, right? And it shows suggestions after every letter you type.If the app tries to send a request for every single keypress, that’s a lot of wasted work — especially if someone types fast.So what do smart developers do?
  • đź’ˇ Real-World Small JavaScript Projects – For Real PeopleJun 03, 2025. So you’re learning JavaScript and you want to build something useful, not just “Hello World” or random number generators. You want to build something that feels like what real developers do. Something simple but practical. Something that makes sense in the real world.
  • Liquid Objects in Power Pages Portal – Explained with ExamplesJun 02, 2025. Learn how to use Liquid Objects in Power Pages Portal with clear examples. This guide helps you customize dynamic content, enhance user experience, and master Power Platform Liquid syntax.
  • Understanding Garbage Collection and Cyclic References in C#May 20, 2025. This article explores .NET memory management, focusing on how the garbage collector handles cyclic references, and how weak references and the `IDisposable` pattern help prevent memory leaks in C# applications.
  • Why Synthetic Data Is the Fuel of Next-Gen AIMay 15, 2025. The impact of synthetic data on AI systems training and development is profound. It deals with privacy problems, repetitiveness, and expensive data sources.
  • How to Convert a DataTable to a List of Objects in C#Apr 27, 2025. Learn how to convert a DataTable to a List<T> in C#. Explore manual, reflection-based, and LINQ methods for better performance, type safety, and cleaner code. Improve maintainability in modern C# applications.
  • Excel-Powered CRUD in SharePoint List Using PnP JS and XLSX Apr 24, 2025. Utilizing Excel as an information source, PnP JS for SharePoint operations, and the XLSX library for parsing Exceed expectations records, I will walk you how to perform out CRUD (Create, Read, Update, Delete) method in a SharePoint list.
  • How to Convert a List of Objects to a DataTable in C#Apr 23, 2025. In real-world C# applications, especially when working with data layers or exporting data (e.g., to Excel, reports, or grids), you may often need to convert a generic list of objects (List<T>) to a DataTable.This article shows you how to do that in a clean, reusable way using reflection.
  • List All Power Automate Cloud Flows ProgrammaticallyApr 23, 2025. Power Automate allows developers to programmatically manage cloud flows stored in Microsoft Dataverse. Whether you’re automating DevOps, migrating solutions, or enforcing enterprise governance, managing flows through code is powerful and scalable.
  • Search and Removal of Item from Local List in MAUI [GamesCatalog] 16Apr 22, 2025. We aim to create a mobile app and its backend using C# and .NET. We will use the IGDB game review API: https://api-docs.igdb.com/#examples. With it, we can build a mobile game catalog app and store our reviews.
  • Listing Information from the Local DB in MAUI .NET 9 [GamesCatalog] - Part 15Apr 20, 2025. Learn how to list and display information from a local database in a .NET 9 MAUI application! In Part 15 of the GamesCatalog series, we’ll explore data binding, fetching records, and displaying game data seamlessly in your MAUI app. Perfect for beginners and intermediate developers!
  • Horizontal List of Overlapping Images in MAUI [GamesCatalog] - Part 14Apr 20, 2025. Learn how to create a horizontal list of overlapping images in .NET MAUI for your GamesCatalog app! In Part 14 of this series, we’ll explore step-by-step how to design a smooth, modern UI using CollectionView and custom layouts. Perfect for game apps and cross-platform projects!
  • Mastering the New Era of C#: Exploring Advanced Features in C# 14Apr 15, 2025. C# 14 represents a polished and sophisticated leap forward in the language’s maturity. C# 14 refines the language with primary constructors, collection expressions, interceptors, and performance enhancements.
  • Overview of RadioButtonList ControlApr 15, 2025. Learn how to use RadioButtonList in ASP.NET WebForms, including its layout types (Horizontal, Vertical, Flow, Table), binding data from C# List, database tables, and manually added items. Also, discover JavaScript integration and best practices.
  • C# 14: Exploring New Language Features for Modern .NET DevelopmentApr 02, 2025. In this article, I explore the most important features introduced in C# 14.0, including primary constructors in classes, collection expressions, enhanced pattern matching, and required members. I walk through how each of these additions simplifies code, improves performance, and promotes safer, more expressive development.
  • Memory Management in .NETMar 31, 2025. Memory management in .NET is handled by the Garbage Collector (GC), which automatically allocates and frees memory to optimize performance.
  • Enhancing SharePoint: New Features in Microsoft Lists FormsMar 27, 2025. This article covers new features such as conditional branching, logo addition, support for additional field types, and more. Learn how these updates can streamline your workflow and improve the user experience.
  • How to Split a List into Batches Using the Chunk Method in C#Mar 24, 2025. Learn how to efficiently split a list into smaller batches using the Chunk method in C# This method, introduced in .NET 6, simplifies list processing by breaking large collections into manageable chunks.
  • How to Use the Sort Function in Power Apps with Dynamic Column Values from a SharePoint ListMar 22, 2025. This article covers features, advantages, disadvantages, and step-by-step instructions to enhance your data management and user experience.
  • Understanding HashSet in C#Mar 20, 2025. A HashSet<T> in C# is a collection that stores unique elements with fast lookups. It supports set operations like union, intersection, and difference while offering better performance than List<T> for searches.
  • Filter Auto Suggestion Option in Dropdown List View ASP .NETMar 18, 2025. Learn how to implement a filterable auto-suggestion dropdown list in ASP.NET. This guide covers creating a dynamic dropdown with search functionality, enabling users to quickly find options as they type.
  • How to Customize SharePoint Out-of-the-Box List FormsMar 14, 2025. Customizing SharePoint forms with Power Apps enhances user experience by adding headers, changing layouts, and applying branding. It improves functionality and flexibility but may require maintenance and a learning curve for users.
  • Working with Azure Blob Storage: Uploading Files and Listing Blobs in C#Mar 10, 2025. Learn how to work with Azure Blob Storage in C# by uploading files and listing blobs using the Azure Storage SDK.
  • Passing an Object from a List to Another Page in MAUI MVVM .NET 9 [GamesCatalog] - Part 6Mar 10, 2025. This article covers object passing techniques using navigation, data binding, and command binding in the GamesCatalog app. Enhance your cross-platform development skills with structured MVVM patterns for seamless data transfer.
  • Consuming an API and Populating a List with the Results in MAUI MVVM .NET 9 [GamesCatalog] - Part 4Mar 03, 2025. Learn how to consume an API and populate a list with the results in a .NET 9 MAUI MVVM app. In this part of the GamesCatalog series, you'll fetch data from an API, bind it to a list, and implement best practices for handling API responses efficiently.
  • Understanding IEnumerable, ICollection, IList, and ListMar 02, 2025. In .NET, collections like IEnumerable, ICollection, IList, and List help manage data efficiently. IEnumerable allows iteration, ICollection supports modifications, IList enables indexing, and List provides dynamic resizing and advanced methods.
  • Understanding Lists in PythonFeb 27, 2025. This article is around how python stores list and works with it. Python uses lists instead of built-in arrays. Lists are dynamic, memory-efficient, and support fast insertions. Unlike arrays, they grow automatically, while tuples remain immutable and are optimized for retrieval.
  • Automate SharePoint List Retrieval with AWS Lambda and PnP PowerShellFeb 26, 2025. This article walks you through setting up AWS Lambda, configuring PowerShell scripts, and securely accessing SharePoint data. Streamline your workflows with a serverless approach for seamless SharePoint integration.
  • Various Methods to Count Occurrences of Each Number in Array or ListFeb 17, 2025. In this article, I'll show you different ways to count how often a number appears in C#. We'll look at methods like LINQ, Dictionary, GroupBy, and Parallel.ForEach, and see which ones work best for small and large datasets.
  • Creating a ListView MAUI MVVM .NET 9 [GamesCatalog] - Part 2Feb 14, 2025. Create a MAUI .NET 9 project that displays game information using a ListView. Bind a ViewModel with an ObservableCollection of UIIGDBGame items, and design a clean UI using XAML, Grid, and custom styling for a game catalog.
  • Overview of HashSet in C#Feb 14, 2025. This article explains HashSet in C#, covering its functionality, differences from List, and usage in various operations like add, delete, search, and iteration.
  • List Azure Backup Jobs Using C# Async MethodFeb 08, 2025. Azure Backup is a secure, scalable service for protecting VMs, databases, and on-premises data. It automates backups, ensures compliance, supports Geo-Redundant Storage (GRS), and enables recovery via the Azure SDK for .NET or PowerShell.
  • Understanding Garbage CollectionJan 31, 2025. Garbage Collection in C# automatically manages memory by clearing expired objects. It uses generations (Gen 0, 1, 2) for optimization. Dispose and Finalize handle resource cleanup, preventing memory leaks and enhancing performance.
  • How to Convert a DataTable to a List of Objects in C#Jan 27, 2025. In many scenarios, you may need to convert this DataTable into a list of custom objects for easier manipulation and readability. In this article, we’ll go through a simple yet effective way to convert a DataTable to a list of any object type using C#.
  • How to use SharePoint List Input Tool in AlteryxJan 16, 2025. Use Alteryx Designer to connect to SharePoint lists across versions (2007 to SPO). Configure the SharePoint Site URL, and credentials, and select the desired list and view. Filter data, limit records, and export to Excel using the output tool.
  • Sorting Array in Ascending and Descending order in JavaJan 09, 2025. Learn to sort arrays in Java using built-in methods like `Arrays.sort()` for ascending order and `Arrays.sort()` with `Collections.reverseOrder()` for descending order, complete with examples and explanations.
  • Add Data Bars UI in SharePoint List Column Formatting in SharePoint ListJan 01, 2025. This article walks you through the process of customizing your SharePoint list columns for better data visualization and enhancing the current view with conditional formatting to display dynamic, visually appealing data bars.
  • New Modern Microsoft Lists Forms Experience in SharePointJan 01, 2025. Master the new modern Microsoft Lists forms experience in SharePoint with this comprehensive guide. Learn how to create, customize, and optimize forms for better data collection and user interaction.
  • How to Format List Views in SharePointDec 31, 2024. SharePoint list formatting enhances data presentation by customizing appearance, adding alternating row styles, and applying conditional formatting. It improves readability, highlights key data, and boosts user experience for efficient collaboration.
  • LookUp Function in Power Apps for Efficient Data RetrievalDec 31, 2024. The LookUp function in Power Apps allows efficient data retrieval by searching for a single record in a data source based on a condition. It's ideal for scenarios like pulling specific employee details from a SharePoint list.
  • Understanding HTTP Status Codes: List of Errors & Their MeaningsDec 17, 2024. Comprehensive guide to HTTP error codes, covering their meanings, uses, and practical examples. Learn to troubleshoot 4xx errors effectively.
  • Azure Storage Account Vs Azure Data Lake Service Gen 2Nov 25, 2024. Azure Data Lake Storage Gen2 (ADLS Gen2) is a highly scalable and analytics-optimized storage solution in Azure, offering hierarchical namespace, big data processing capabilities, and Secure File Transfer Protocol (SFTP) support.
  • Advanced C# 13 and .NET 9 Features for Expert .NET EngineersNov 22, 2024. With this guide, you will learn about enhanced pattern matching, static abstract members, Native AOT, and much more in C# 13 and .NET 9. Written by Ziggy Rafiq, this is the best resource for experienced .NET Software Engineer Leads.
  • Save List Data to Another List as an Attachment Using Power AutomateNov 19, 2024. This step-by-step guide covers creating workflows to transfer and attach data from one SharePoint list to another, automating data management, and improving efficiency in your SharePoint environment.
  • Retrieve API Data and Store in SharePoint with Power AutomateNov 18, 2024. In this article, we will learn how to use Power Automate to retrieve data from an external API and automatically store it in a SharePoint list, streamlining your workflow and data management.
  • .NET 9 : Params CollectionsNov 15, 2024. In .NET 9 the params keyword has been extended to support not only arrays but also other collection types like ReadOnlySpan<T> and IEnumerable<T>. This enhancement offers greater flexibility and potential performance improvements.
  • Understanding IEnumerable In C#Nov 14, 2024. IEnumerable in C# is an interface that defines a standard way to iterate over a collection of objects. The IEnumerable interface in C# provides a standard, efficient way to iterate over collections using foreach, enabling cleaner, more readable code, and LINQ integration.
  • Creating Views for Lists or Libraries in SharePoint OnlineNov 12, 2024. Creating custom views in SharePoint Online allows users to tailor how lists and libraries display data. With options for filtering, sorting, grouping, and different layouts like calendar and gallery views, users can set up views to meet specific needs.
  • How to Sort a List of Objects in TypeScript by PropertyNov 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.
  • Delete Comment from SharePoint List ItemOct 24, 2024. This article explains how to delete comments from a SharePoint list item using the SharePoint REST API and Power Automate. It covers creating a flow with a manual trigger, fetching comment details via HTTP requests, and deleting specific comments by ID, providing enhanced control over list items.
  • New Feature: Drag and Drop in Microsoft ListsOct 21, 2024. Microsoft Lists has introduced a new drag-and-drop feature, allowing users to seamlessly rearrange items in both new and existing lists. Custom ordering is saved across the list, and users can switch to custom order mode easily.
  • Introduction to SharePoint and Steps Creating Lists Oct 15, 2024. Learn how to create and manage lists effectively, enhancing your team's collaboration and productivity. With step-by-step instructions and best practices, this resource is perfect for beginners and those looking to optimize their SharePoint experience.
  • Understanding List Column Data Types in SharePoint Oct 15, 2024. SharePoint allows users to create and manage lists with various column types, such as text, number, date, and lookup fields. These columns help organize and store data effectively, ensuring better reporting and data integrity.
  • Custom Copilot: Fetch and Process SharePoint List Data Using Prompt AI BuilderSep 29, 2024. It guides users through creating custom workflows in Copilot Studio, automating data retrieval, and utilizing AI to process and present information efficiently, enhancing task management and decision-making.
  • The implementation of Double Linked List with C ProgrammingSep 26, 2024. A doubly linked list is a dynamic data structure in C that allows bidirectional traversal of elements using pointers. This implementation covers node creation, insertion, deletion, and traversal operations.
  • Access SharePoint List Using Custom Copilot – Copilot StudioSep 25, 2024. Learn how AI-driven tools streamline workflows, enhance productivity, and automate SharePoint operations, offering tailored solutions for efficient data management and collaboration.
  • Using C# 12 with Clean Code PracticesSep 21, 2024. 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 code practices with C# 12.
  • Exploring the Performance Boosts in .NET 9Sep 20, 2024. .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/3 support for improved network performance.
  • Web Scraping using BeautifulSoup in PythonSep 03, 2024. 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 with examples.
  • Site Column & List Column and Site Content TypeSep 03, 2024. This article covers SharePoint's Site Columns, List Columns, and Site Content Types. It explains the differences between Site and List Columns, including their scope, reusability, and management.
  • Working with Form Objects in JavaScriptAug 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.
  • Python Data Types and CollectionsAug 22, 2024. Explore Python'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, tuples, dictionaries, and sets.
  • Brief Overview of Collection Types in C#Aug 20, 2024. 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.
  • Save Google Form Data to SharePoint ListAug 12, 2024. Learn how to seamlessly save Google Form data to a SharePoint List for efficient data management. This guide covers step-by-step instructions for automating data transfer, integrating Google Forms with SharePoint, and setting up workflows to ensure that form submissions are captured in real-time.
  • Implementing Cascading Drop-Down Lists in .NET CoreAug 07, 2024. Cascading drop-down lists are an essential feature in dynamic web applications where the choice in one dropdown dictates the contents of another. For example, selecting a country in one drop-down could filter the available states in another.
  • Creating a Dynamic Dropdown List with JavaScript and jQueryAug 05, 2024. dynamically populating dropdown lists can enhance the user experience by ensuring that options are up-to-date and relevant. This article will guide you through creating a dropdown list using jQuery and AJAX, providing a complete solution for fetching and displaying data from a server
  • Host-Named Site Collections in SharePointAug 02, 2024. 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, facilitating multi-tenancy and scalable web applications.
  • The AbstractList Class and ArrayList Class in Java CollectionJul 29, 2024. 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 default implementations for some list operations, allowing focus on specific aspects of the custom list.
  • Understanding Iterators in C#Jul 28, 2024. 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.
  • Populate Dropdown with All People from List for Easy SelectionJul 26, 2024. This is a complex situation where group of people are listed in drop down and depending upon drop down values all the people from list where drop down selected value.
  • Fluent UI (Collection of UX Frameworks from Microsoft )Jul 23, 2024. 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 platforms, supporting design consistency, accessibility, and high performance with various theming options and responsive designs.
  • Understanding flatMap in JavaJul 23, 2024. The flatMap operation in Java is a powerful tool for transforming and flattening collections. Learn about Java's `flatMap` operation in this article, which maps each element to a stream and flattens them into a single stream. Ideal for handling nested collections and complex data transformations.
  • HashSet Class and TreeSet Class in Java CollectionsJul 19, 2024. 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.
  • Vector Class and the Stack Class in Java CollectionsJul 19, 2024. The Vector and Stack classes in Java Collections Framework provide essential tools for managing dynamic arrays and last-in, first-out (LIFO) stacks, respectively.
  • Using Find Instead of FirstOrDefault with Collections in C# .NETJul 15, 2024. 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<T>, while Find is optimized for List<T>, offering potentially better performance in list operations.
  • PowerApps Rating Control Total and Average Ratings ValidationsJul 05, 2024. Rating is one of the most common features in the social sites and for any of the interactive requirements by users. While I was developing rating, I realized, there are lots of validation required in order to capture correct ratings.
  • How To Create a To-Do List in AngularJSJul 04, 2024. This step-by-step guide covers everything from setting up your AngularJS environment to creating dynamic to-do items and implementing essential features like adding, editing, and deleting tasks.
  • How to Create Multiple Filters in Gallery using CollectionJul 03, 2024. Filtering gallery on multiple selection is most demanding user-friendly functionality which could be expected by any business. In this post, we'll look at how to design and implement multiple filter on gallery using collection.
  • How to Define a Custom Connector Using a Postman CollectionJul 02, 2024. 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 base URLs, set authentication (API key, OAuth 2.0), and integrate seamlessly into workflows.
  • Mastering LINQ: TakeWhile and SkipWhile in C# .NETJul 01, 2024. Explore LINQ'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 process collections effectively, with detailed examples demonstrating their functionality and practical applications.
  • SharePoint: Integrating Playlists into Your Stream Web PartJun 28, 2024. Microsoft SharePoint and Stream enhance team productivity and knowledge sharing by allowing users to create, manage, and share playlists. Embed playlists on SharePoint pages using the Stream web part, manage access and permissions, and share content with your organization.
  • Creating Dynamic Dropdown Lists in ASP.NET MVCJun 28, 2024. Dropdown lists, or <select> elements, are essential in web forms, enabling users to choose from a predefined list of options. They enhance user experience by simplifying input selection and ensuring data consistency.
  • Implementing Cascading Dropdowns in ASP.NET MVC Using jQuery AJAXJun 28, 2024. create a cascading dropdown functionality where the selection of a "Brand" in the first dropdown (BrandId) should dynamically populate the options in the second dropdown (BrandlistId). However, there are some issues and potential improvements that need to be addressed to ensure correct functionality.
  • Set Interface and Map Interface in java.util PackageJun 26, 2024. The Set Interface and Map Interface within the java.util package are fundamental components of Java's Collections Framework. The Set Interface defines a collection that does not allow duplicate elements, offering implementations like HashSet, TreeSet, and LinkedHashSet.
  • Generate List of SharePoint Pages and Owners Using Power ShellJun 24, 2024. Managing large SharePoint sites can be simplified using a PowerShell script with PnP PowerShell. This script automates the retrieval of page details and owners, exporting the data to a CSV file, saving time and ensuring accuracy in data management.
  • Learn Garbage Collection in PythonJun 17, 2024. 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 circular references, and best practices for efficient memory management in Python applications.
  • Garbage Collection (3), C# using statement --- Language support for DisposeJun 17, 2024. 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. This series explores GC in .NET, focusing on managed, unmanaged code and the `using` statement for resource management.
  • Streamlining Collection Chunking in .NET 6: .Chunk vs. MethodsJun 16, 2024. .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, manageable parts.
  • How to Save Power Apps Editable Gallery Data to Sharepoint List?Jun 13, 2024. The PowerApps ForAll function iterates through Gallery5 items, using Patch to update TimeSheetEntriesDetail. It captures date, project ID, and employee details from tempcol, ensuring precise data insertion into SharePoint. This process automates data management, enhancing efficiency in app development and deployment.
  • Delegates in .NET Core C#: Syntax, Usage and ExamplesJun 11, 2024. A delegate is an object that points to a method; alternatively, it may be thought of as a variable of the reference type that stores references to the methods. Function pointer in C/C++, delegates are used in C#. It offers a mechanism to specify which method should be invoked in the case that an event is triggered.
  • Frozen Collections in .NET 8Jun 10, 2024. Frozen Collections in .NET 8" explores the introduction of frozen (immutable) collections in the latest .NET framework. These collections offer performance optimizations and enhanced memory management by ensuring data structures are read-only after creation.
  • Optimizing Memory Management in C#Jun 04, 2024. 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.
  • The Simplicity of the New Terse Syntax [ Collection Expressions ]Jun 03, 2024. 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 readability, revolutionizing how you interact with collections in programming languages.
  • Mongo DB Indexing Strategies with Real-time ScenariosJun 03, 2024. 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. This article delves into indexing, covering syntax, parameters, and various index types like compound.