Resources  
  • 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.
  • 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.
  • 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.
  • 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.
  • 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.
  • Bringing Legacy .NET Framework Applications into the Modern EraJan 08, 2025. With this guide, you'll learn how to migrate your legacy .NET Framework apps to .NET 9, without refactoring code. It also discusses namespace updates, error handling improvements, and unit testing strategies to ensure a smooth transition. By Ziggy Rafiq.
  • 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.
  • .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.
  • 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.
  • 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.
  • Demystifying Hide Legacy App in Dynamics 365Aug 23, 2024. This guide explains how to hide legacy apps in Dynamics 365, aimed at beginners. Learn to streamline user experience, minimize errors, and enhance security by managing app visibility through the Power Platform Admin Center.
  • 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.
  • 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.
  • 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.
  • Understanding ADO.NET Data ProvidersJul 22, 2024. In the realm of .NET application development, ADO.NET (ActiveX Data Objects for .NET) serves as a bridge between your application and various data sources. A key component of ADO.NET is its data providers, which are specialized classes designed to interact with specific types of databases.
  • 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.
  • 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.
  • 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.
  • How To Convert Older C# Version to C# 12 With ExampleJun 17, 2024. Many developers still use older versions of C# due to legacy codebases, corporate constraints, and familiarity with older language features. Upgrading can seem daunting, but modern versions of C# offer significant benefits such as better performance, enhanced features and improved security.
  • 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.
  • 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.
  • Learn About Observer Design PatternMay 20, 2024. 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 by calling one of their methods.
  • All About BI Tools and Types to Make You Ready for Next ActionMay 13, 2024. 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 AgentMay 09, 2024. 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 followed to migrate from OMA/MMA to AMA.
  • Dictionary in .NET C#: Syntax, Methods, and ExampleMay 07, 2024. 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.
  • Understanding Garbage Collection in .NET CoreMay 05, 2024. 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 reclaiming memory that is no longer in use, thereby preventing memory leaks and ensuring efficient memory utilization.
  • HashSet .NET C#: Usage, Methods, and ExampleMay 03, 2024. 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. When compared to a list, the HashSet performs substantially better.
  • ConcurrentBag<T> in C#: Thread-Safe Collection for ConcurrencyApr 23, 2024. 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.
  • ConcurrentBag<T> in C#: Thread-Safe Collection GuideApr 23, 2024. 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 simple examples to help developers grasp its concepts more effectively.
  • Types of Modern Site Collections - SharePointApr 18, 2024. 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.
  • Plant Disease Classifier with Azure AI Custom Vision and BlazorApr 17, 2024. 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 highlights the seamless fusion of cutting-edge AI technology with modern web development.
  • Learn About Collections in RustApr 17, 2024. 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 offer dynamic resizing, and slices provide references to portions of collections.
  • Exploring Frozen Collections in .NET 8 With BenchmarkingApr 14, 2024. 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 present how to work with these collections and demonstrate the performance difference when compared with other collections.
  • Learn Memory Management in JavaScriptApr 08, 2024. 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.
  • Learn about Queue in C# with examplesMar 21, 2024. 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 Mar 18, 2024. 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 analysis and decision-making.
  • What is Use of ‘Using’ Statement in .NET?Mar 15, 2024. 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 cleaner, more reliable code.
  • Why Any() Outperforms Count() in Collection ChecksMar 06, 2024. 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#.
  • Creating Cascading Dropdowns Using Collections in PowerApps Mar 02, 2024. 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 interfaces.
  • Understanding and Managing Access Control in SharePointFeb 29, 2024. 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 ,Check Permissions , Permission Levels , Access Request Settings , Site Collection Administrators.
  • Exporting and Importing Site Collection Term Stores In SharePointFeb 27, 2024. 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 purposes to importing them into new site collections, we&#39;ll walk you through the step-by-step process.
  • Creating Collections from SharePoint Lists in PowerAppsFeb 15, 2024. 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 of collections over SharePoint lists, including the ability to perform complex queries.
  • How to Backup/Restore MongoDB Database and CollectionsFeb 11, 2024. Backing up and restoring a MongoDB database and collection with command definition explanation and example as well.
  • How to Create Site Collection in SharePoint Online?Feb 05, 2024. 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 MAUIFeb 02, 2024. 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. Collection View should be used for presenting lists of data that require scrolling or selection.
  • Array Operations in JavaScriptJan 17, 2024. 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), slicing, finding, and filtering/mapping.
  • Concurrent Collections in C#Jan 12, 2024. 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, master efficient and safe multi-threaded programming.
  • Understanding Collection Types in C#Jan 09, 2024. 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 unnecessary data. IQueryable optimizes query execution by fetching only required data, which is beneficial, especially with extensive datasets or remote sources.
  • What is Collection Expressions in C# 12?Jan 03, 2024. 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 friendly guide demystifies the magic behind these expressions, even if you&#39;re a coding newbie.
  • Understanding Dictionary in C#Jan 03, 2024. 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 advanced features, empowering efficient data management in your C# applications.
  • Essential Features of C# 12 You Need to KnowDec 28, 2023. Unlock C#&#39;s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
  • NuGet for .NET 8Dec 27, 2023. Unleash the power of NuGet for .NET 8! This update revolutionizes package management with enhanced security, centralized dependencies, performance boosters like frozen collections, and productivity tools like improved diagnostics. It&#39;s time to say goodbye to vulnerabilities and chaos, and embrace a streamlined, secure, and joyful development journey!
  • Collection Expressions in C# 12Dec 12, 2023. C# 12.0 introduces collection expressions, streamlining collection initialization syntax. This evolution enhances code conciseness, readability, and performance, simplifying developers&#39; interaction with arrays, lists, and more.
  • .NET Core: Detail of Lifetime ManagementNov 21, 2023. In .NET Core, lifetime management refers to how objects are created, used, and eventually disposed of within an application. It ensures efficient resource utilization and prevents memory leaks.
  • Java 21: New Features and ExamplesNov 02, 2023. Java 21 is a major release that includes a number of new features and improvements that make Java more concise, expressive, safe, and performant. Some of the most significant new features include record classes, sealed classes, pattern matching for instanceof, virtual threads, and sequenced collections.In short, Java 21 is a must-have update for any Java developer. It includes a number of new features that can help you to write better code, faster.
  • New Features of Rust 1.73Nov 02, 2023. Rust 1.73 is a major release that includes a number of new features and improvements, such as impl Trait syntax, generic associated types, and improved borrow checker performance. These changes make Rust more expressive, efficient, and user-friendly.
  • Advanced Garbage Collection PotentialOct 25, 2023. Learn commands of the Garbage Collector to work efficiently. I encountered a significant obstacle during a recent image and pdf processing project using Windows Forms Applications. Despite having a system equipped with x64 architecture and an abundance of RAM, the application consistently failed, unable to handle the processing load.
  • Mastering List Collections in C# Sep 24, 2023. Explore the power and versatility of C# List collections with this comprehensive guide. From basic operations to advanced techniques, learn how to harness the full potential of lists for effective data manipulation. Whether you&#39;re a beginner looking to master the essentials or an experienced developer seeking to level up your C# skills, this guide provides a step-by-step journey through list collections, making complex data management accessible and efficient.
  • Garbage Collection in C#Sep 08, 2023. In C#, garbage collection is a memory management process where the runtime environment automatically identifies and reclaims memory that is no longer in use by the program. It helps prevent memory leaks and ensures efficient memory utilization by tracking and deallocating objects that are no longer reachable or referenced by the program. The .NET runtime provides an automatic garbage collector that runs in the background, making it easier for developers to work with memory without having to explicitly free memory resources like in languages with manual memory management, such as C and C++. This automated process helps improve code safety and reduces the risk of memory-related errors.
  • List In KotlinSep 04, 2023. In this article, we delve into Kotlin&#39;s Lists, fundamental in managing collections of items. Learn about Immutable and Mutable Lists, key methods, and their practical use cases.
  • Generics in C# Aug 25, 2023. Harness the Versatility of C# Generics: Boost Code Reusability and Type Safety. Dive into how Generics empower adaptable, efficient code, accommodating various data types while maintaining robust type checking.
  • Legacy Modbus Devices Connected to Azure IoTAug 22, 2023. Discover the fusion of Modbus, a time-honored protocol in industrial automation, with Azure IoT. Seamlessly connect legacy systems to cloud services for insights, efficiency, and transformative power.
  • Using the OrderBy and OrderByDescending Operator in LINQAug 08, 2023. Using the OrderBy and OrderByDescending Operator in LINQ: Sorting Collections
  • Server Side Pagination in MongoDBJun 21, 2023. Here is a step-by-step guide to implementing server-side pagination in MongoDB.
  • Collections in KotlinJun 12, 2023. The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
  • How To Check The Length Of An Array In C#May 05, 2023. In this article, you will learn How to check the Length of an array in C#
  • Applying site scripts to modern site collections using Power AutomateApr 21, 2023. Process of applying site scripts to modern site collections using Power Automate.
  • How To Copy An Array In C#Apr 19, 2023. In this article you will learn How to copy array in C#.
  • Migrate Your Legacy App To The Latest Technologies In 3 StepsFeb 08, 2023. In this article, you will learn how to migrate your legacy app to the latest technologies in 3 steps.
  • How To Conditionally Display/Hide Controls Using A Checkbox And A Gallery ControlFeb 07, 2023. In this article, we will learn how to show or hide certain elements based on certain conditions. This can be useful in scenarios where you only want to display specific controls on screen based on a user&#39;s selection. By using the Collect, Remove, and Concat functions, along with setting the visible
  • Difference Between "RUNTIME" Class And "CLASS" ClassJan 30, 2023. The Runtime class encapsulates the runtime environment. In a running java application, the instances of this class encapsulates the run time state of an object.
  • Postman - Environment, Collection And MonitorsJan 04, 2023. In this article, you will learn about Postman Environment, Collection and Monitors.
  • Creation Of API Reqest Using Postman Tool Dec 27, 2022. In this article, you will learn how to create API Reqest using Postman Tool.
  • Postman - Setup Workspace And CollectionNov 28, 2022. 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 MVC Web APIs.
  • IEnumerable<T> Vs IReadOnlyList<T>Nov 28, 2022. Understanding the differences between IEnumerable&lt;T&gt; and IReadOnlyList&lt;T&gt; when returning immutable collection from method
  • SharePoint Online - How To Copy Site To Different Tenant/Site Collection Using PowerShellSep 28, 2022. In this article, we will learn how to copy a SharePoint site schema from one site collection or tenant to another using PowerShell.
  • Role Of Map Interface And Iterator Interface In JavaAug 29, 2022. A map is a special kind of set with no duplicates. In the Collections API, java.util.Map defines this interface.
  • Arrays Class In JavaJul 30, 2022. In this article, you will learn about the Arrays class in java.
  • Collection Combine In PythonJul 22, 2022. In this article, we will see how we can combine collections easily in Python.
  • LinkedList Class In UTIL Package CollectionJun 19, 2022. The Linked List class provides a linked-list data structure.
  • Three Cursors In Collection FrameworkJun 15, 2022. In this article, you will learn about cursor in the collection framework.