Resources  
  • Mastering Named, Positional, and Input/Output Parameters in Stored Procedures with EF CoreMay 22, 2025. Understanding Name Parameters, Positional Parameters, Input/Output Parameters, and Their Usage in Stored Procedures with EF Core
  • Real-Time Data Retrieval from APIs Using SSISMay 14, 2025. This article explains how to integrate APIs with SQL Server Integration Services (SSIS) to automate data retrieval using HTTP requests. It covers API setup, SSIS package creation, and script task configuration.
  • Passing Connection as Input Parameter in PowerShell FunctionsApr 14, 2025. Easily reuse a single SharePoint Online admin connection in PowerShell functions to fetch QA site info efficiently, reducing redundant logins and enhancing performance in M365 automation tasks.
  • Understanding Parameter Sniffing in SQL ServerMar 24, 2025. In SQL Server and other relational database systems, query execution performance is critical for handling large datasets efficiently. One common yet sometimes problematic optimization technique is Parameter Sniffing. While it can improve query performance.
  • Understanding in, ref, and out Parameter Modifiers in C#Mar 09, 2025. Learn how to use in, ref, and out parameter modifiers in C# with practical examples. Understand their differences, use cases, and best practices for passing arguments efficiently.
  • High Performance of LoggerMessage in Microsoft.Extensions.LoggingMar 08, 2025. LoggerMessage in Microsoft.Extensions.Logging provides high-performance logging by reducing memory allocations and improving efficiency. Unlike traditional logging methods, it uses precompiled delegates to format log messages, making it faster.
  • Chain of Responsibility Using Delegate Chaining in .NET Mar 02, 2025. The Chain of Responsibility (CoR) pattern enables flexible processing pipelines, used in ASP.NET Core middleware, HttpClient handlers, and validation pipelines like FluentValidation. It supports dynamic rules, async execution, and extensibility.
  • Scope Communication Object in JSP Feb 28, 2025. The Scope Communication object consist of session object, application object and pageContext object.
  • Remove IIS Log Files (4-1) --- Managing Sensitive Info in AWSFeb 24, 2025. This article will discuss parameter store and Secret Manger in AWS
  • Learn about Delegates And EventsJan 20, 2025. Delegates and events are key concepts in C#. A delegate is a variable that holds a reference to a method, allowing flexible method calls. Events use the publisher-subscriber model, where a publisher triggers an event and subscribers handle it.
  • Essential C# KeywordsDec 25, 2024. This article explains important C# keywords that help in writing more efficient code. It covers keywords like volatile, value, get, set, yield, partial, and where, describing their uses in a simple manner. These concepts are essential for anyone looking to improve their C# programming skills.
  • Factory Design Pattern Using Delegates In C#Nov 27, 2024. Factory Pattern is a creational design pattern that provides a way to encapsulate object creation. Instead of directly instantiating objects, you delegate the creation process to a factory class.
  • User-Defined Functions in SQL ServerNov 21, 2024. SQL Server supports two types of User-Defined Functions (UDFs): Table-Valued and Scalar-Valued. Table-valued functions return a table based on logic, while Scalar-Valued functions return a single value.
  • Setting Default Dates in Power Apps: Using Today(), Date(), Year(), and DateAdd() Nov 14, 2024. Learn how to set default dates in Power Apps using functions like Today(), Date(), Year(), and DateAdd(). This guide explains how to simplify date fields, enhance user experience, and improve app functionality.
  • Explaining Deep Linking in Power Apps Nov 12, 2024. Deep linking in Power Apps enables direct navigation to specific screens, improving user experience and engagement. By using URL parameters, custom schemes, and StartScreen functions, developers can create targeted, optimized user journeys.
  • Microsoft Graph Permissions - Get Access on Behalf of a UserOct 30, 2024. To call Microsoft Graph, an app must obtain an access token from the Microsoft identity platform. This access token includes information about whether the app is authorized to access Microsoft Graph on behalf of a signed-in user or with its own identity.
  • Difference Between Delegated and App Only AccessOct 29, 2024. Delegated access allows an application to act on behalf of a signed-in user, requiring user authentication and permission via OAuth 2.0, while app-only access enables an app to operate independently without user interaction, using its own identity and permissions.
  • Mark Input Parameters in Triggers as OptionalOct 28, 2024. In this article, we’ll walk through how to mark input parameters as optional in Power Automate triggers and explore how this can improve flow flexibility.
  • Efficient Data Handling in SQL Server with Table-Valued ParametersOct 27, 2024. This article delves into how TVPs enhance performance by enabling the transfer of multiple rows of data in a single parameter, streamlining stored procedures, and optimizing database operations.
  • How Func Delegates Work in LINQSep 27, 2024. In this article, we explore how Func delegates operate within LINQ (Language Integrated Query) in C#. Func delegates enable concise and powerful data manipulation by allowing developers to pass methods as parameters.
  • Understanding Callbacks with Func and Action DelegatesSep 26, 2024. This article explains how to use Func and Action delegates in C# to implement callbacks, providing flexible and reusable code. It includes practical examples for both returning and non-returning methods.
  • Detailed use of Action Delegate in C#Sep 11, 2024. In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It supports lambda expressions and anonymous methods, making code more concise. Unlike Func<T>, Action always returns void.
  • Different Ways to Redirect and Retrieve ID Parameters in AngularSep 02, 2024. Angular offers various methods for navigation and parameter handling in web applications. Use the RouterLink directive for simple navigation, the Router service for programmatic control, and ActivatedRoute to retrieve parameters.
  • Default Implementation in C# InterfacesAug 28, 2024. This article details creating a `StringUtils` utility class in Java to centralize common string operations. It covers methods for checking if a string is alphanumeric with underscores or consists solely of letters, enhancing code organization and reusability.
  • Creating a Custom Date Picker in jQuery with ValidationAug 13, 2024. This article demonstrates how to create a custom date picker in jQuery with validation. It covers setting up HTML text boxes for date input, initializing jQuery Datepicker with date range constraints, and storing selected dates in hidden fields.
  • Stream Conversations with Amazon Bedrock API in .NET Console AppAug 12, 2024. Learn how to create a .NET console application that streams conversations using the Amazon Bedrock Converse API with the Anthropic Claude 3 Sonnet model. This guide covers setting up your AWS environment, configuring Visual Studio, and using the AWS SDK to handle streaming conversations and model responses.
  • SharePoint Server Not Redirecting to Default Page Needs Full URLAug 02, 2024. SharePoint Server not redirecting to the default page can be frustrating, especially when it requires a full URL to access the site. This issue often stems from configuration problems or redirection settings.
  • Encrypting Header & Request Body Parameters in .NET Core Web APIJul 24, 2024. In this article, we'll explore how to encrypt header and request body parameters in a .NET Core Web API to prevent them from being readable in the page source or by network sniffing tools. We'll use an example application developed by "Nikunj Satasiya" to illustrate the process.
  • Save as draft and Submit with required, optional functionality and by default required functionality in PowerAppsJul 18, 2024. This is most required feature in any app. If the form is lengthier, it is very useful feature. Any user can fill in the half of the forms and save the form as draft. Later can come in and pickup the form from where they left.
  • Enabling GitHub Integration in Microsoft FabricJul 17, 2024. Microsoft Fabric integrates seamlessly with GitHub, enhancing collaboration and efficiency for development teams. This integration supports CI/CD pipelines, automating build, test, and deployment processes.
  • Explicit Interface Implementation & default interface methods in C#Jul 03, 2024. In C# programming, interface members serve as blueprints that classes must follow when implementing functionality. When multiple interfaces declare members with the same names, naming conflicts can arise, necessitating careful management to ensure each member is correctly implemented for its intended interface.
  • Learn Use of Lambda Operator in C#Jul 01, 2024. Explore the versatility of lambda expressions in C#, powerful tools for creating inline functions without the need for traditional method declarations. Discover their syntax, applications in LINQ queries, and how they enhance code readability and flexibility in modern C# programming.
  • Primary Key and Unique Key ConstraintsJun 29, 2024. Primary Key and Unique Key Constraints in database management ensure data integrity and uniqueness. A Primary Key ensures each row is unique and not null, with only one per table. Unique Keys also ensure uniqueness but can include nulls and multiple constraints per table. Both support indexing and relationships.
  • Enhancing Security with a Client IP Safelist in .NETJun 27, 2024. Enhance your web application's security by implementing an IP safelist in ASP.NET Core. This technique restricts access to trusted IP addresses only, preventing unauthorized access. Our guide covers creating middleware to enforce the safelist, ensuring sensitive data and endpoints are protected effectively.
  • The Implementation of Pointer to FunctionJun 27, 2024. This content explores the implementation of pointers to functions in C and C++ programming. It delves into their syntax, usage, and benefits, such as dynamic function calls, callback functions, and efficient memory management.
  • Predicate Delegates in .NET Core C#: Syntax, Usage and ExamplesJun 22, 2024. Like Func and Action delegates, the predicate is a delegate. It symbolizes a procedure that verifies that the passed parameter satisfies a set of requirements. One input parameter must be provided by a predicate delegate method, which must then return a boolean (true or false).
  • Editing JSON of Fabric Data Pipelines - Part 1Jun 21, 2024. Enable JSON editing in Fabric data pipelines by appending the 'feature.enableJsonEdit=1' to the pipeline URL. Switch from view-only to edit mode, make necessary JSON changes, then perform a minor UI adjustment to activate the Save option. Similar flexibility as Azure Data Factory's PaaS environment.
  • Learn Action and Func Delegates in C#Jun 19, 2024. Learn about Action and Func delegates in C# to master delegate usage for different scenarios. Action delegates are for methods that return void, while Func delegates handle methods with return values.
  • C# .NET 8 SQL Bulk Insert Dapper vs BulkCopy vs Table-Value ParamsJun 18, 2024. Explore the performance of SQL bulk insert methods in C# .NET 8 by comparing Dapper, BulkCopy, and Table-Value Parameters. This comprehensive analysis covers implementation details, efficiency, and best practices for optimizing large data insertions, helping developers choose the right approach for their projects.
  • Action Delegates in .NET Core C#: Syntax, Usage and ExamplesJun 18, 2024. One built-in generic type delegate is the action delegate. This delegate makes your program more readable and efficient by eliminating the need for you to define a custom delegate.
  • Unlock Small Language Models Deep Dive Parameters Loss Optimization RAGJun 17, 2024. Language models have revolutionized the field of natural language processing (NLP), enabling machines to understand, generate, and respond to human language with remarkable accuracy. At the heart of these models are key concepts that drive their functionality: parameters, loss functions, and optimization.
  • The Stochastic Gradient Descent Jun 16, 2024. This article delves into Stochastic Gradient Descent (SGD), a cornerstone algorithm in machine learning and optimization. It explains how SGD optimizes model training by iteratively updating parameters using random data subsets.
  • Func Delegates in .NET Core C#: Syntax, Usage and ExamplesJun 13, 2024. Func and Action are two generic delegate types that are built into C#, so you usually don't need to explicitly define custom delegates. A generic delegate called Func is part of the System namespace. It has one out parameter and zero or more input parameters. As an out parameter, the final one is regarded as such.
  • Oracle Stored Procedure Output Parameters with Dapper in ASP.NET CoreJun 11, 2024. This article provides a detailed guide to integrating Oracle stored procedures with ASP.NET Core using Dapper, focusing on handling output parameters, which can often be a challenging aspect of database interactions.
  • 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.
  • Pagination in C#: Complete Guide with Easy Code ExamplesJun 08, 2024. Discover how to implement pagination in C# with this comprehensive guide. Learn to use ASP.NET Core, Entity Framework, and LINQ for efficient data paging. This guide covers server-side and client-side pagination, using Skip and Take methods, handling pagination parameters, and provides easy code examples for seamless integration.
  • Arrow Function Variants in JavaScriptJun 03, 2024. Arrow functions in JavaScript offer concise syntax for writing functions. They simplify coding with features like no parameter handling, optional parentheses for single parameters, and streamlined function bodies. They're versatile, applicable in various scenarios, like callbacks and high order functions.
  • Optimizing Performance with Dapper with .NET Core API May 30, 2024. Learn Dapper best practices for optimal database interaction in .NET applications. Explore techniques like using output parameters and handling multiple result sets in stored procedures. Enhance efficiency with optimized query writing for delete operations.
  • UnderStanding nameof Operator in C#May 28, 2024. The nameof Operator retrieves names of variables or members dynamically, aiding in code maintenance. Raising PropertyChanged Event notifies property changes in INotifyPropertyChanged implementations. Argument Checking and Guard Clauses ensure robust code by validating inputs.
  • Understanding Func, Action, and Predicate in C# .NETMay 21, 2024. In C# .NET, delegates are a powerful feature that allows you to pass methods as arguments to other methods. Among the most commonly used delegates are Func<T>, Action<T>, and Predicate<T>. This article will delve into each of these delegates, exploring their definitions, use cases, and examples.
  • Exploring Delegating Handlers in C# .NETMay 19, 2024. In modern software development, especially when dealing with web services, the ability to customize and extend HTTP request and response processing is crucial. This article delves into the concept of delegating handlers, illustrating their use and benefits with practical examples.
  • Action and Func Delegates in C#May 17, 2024. Learn about Action and Func Delegates in C# with an app sample. In C#, delegates like `Action` and `Func` enable methods to be treated as objects, promoting flexible, modular, and reusable code through dynamic method invocation and functional programming paradigms.
  • Exploring in Depth Of Abstraction in C#May 14, 2024. Dive deep into abstraction in C#, exploring OOP concepts like encapsulation, inheritance, and polymorphism. Learn about abstract classes, interfaces, generics, and advanced features like delegates and events, enhancing code modularity and scalability.
  • Mastering Azure Bicep ParametersMay 07, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep parameters. It starts with logging into Azure, then moves on to explain the concept of parameters in Azure Bicep, complete with code samples and explanations.
  • Using Stored Procedures in MySQL Enhanced Code PerformanceApr 30, 2024. Stored Procedures in MySQL offer a streamlined approach to executing complex or frequently used SQL logic with a single call, supporting input parameters, procedural logic, and return values.
  • Reversing Parameter Order with Named Arguments in C#Apr 24, 2024. In C#, methods often take parameters that are passed in a specific order defined by their method signature. However, there are cases where you might want to reverse the order of parameters when calling a method. One approach to achieve this is by using named arguments.
  • Table-Valued Parameters in SQL ServerApr 16, 2024. Table-Valued Parameters in SQL Server enable passing multiple rows of data to stored procedures, enhancing performance for bulk operations. Utilizing user-defined table types, they streamline data manipulation tasks and allow parameterized queries, optimizing database development and improving overall performance.
  • MERGE Stored Procedures in SQL ServerApr 15, 2024. In this article, I present how to use the MERGE statement in a stored procedure to merge a single record and how to use it to merge a list of records by using Table-Valued parameters in SQL Server.
  • Explain about Event Handling in C# .NetApr 02, 2024. In the world of C# programming, events are a powerful mechanism that facilitates communication between different components of an application. In this comprehensive guide, we'll delve deep into the concept of events in C#, exploring their syntax, usage patterns, and best practices.
  • Options Pattern Named Options in .Net Core with examplesMar 29, 2024. Learn how to implement the options pattern and validation in .NET Core using named and default options. Explore techniques for binding configurations, fetching options in APIs, injecting services into named options, and utilizing interfaces like IOptionsSnapshot and IConfigureNamedOptions.
  • Dynamic Default Value from SharePoint List in Power Apps Toggle ControlMar 29, 2024. In this article, we will learn how to enhance user experience in Power Apps by integrating dynamic default values from SharePoint lists into toggle controls.
  • Power Apps: Bind Default Values from SharePoint Using Slider ControlMar 28, 2024. In this article, we will learn how to enhance user experience in Power Apps by utilizing the Slider control. This tutorial guides you through binding default values seamlessly from SharePoint, streamlining data integration, and enhancing interactive elements for a more intuitive user interface.
  • How to Pass Credentials as Parameters in PowerShellMar 09, 2024. Learn how to securely pass credentials as parameters in PowerShell using PSCredential. This guide covers reading user input, updating a SharePoint Online site title, and using PowerShell modules for secure authentication and logging.
  • Leveraging Compiled Queries for Enhanced Performance in LINQMar 09, 2024. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
  • Set the Default Name for Connected Chats in Dynamics 365Mar 06, 2024. As an administrator, configure Microsoft Dynamics 365 to set the chat title as the default record title. In Sales Hub app settings, under Chat and Collaborate, choose a record type, enable Auto-name chats, and save changes.
  • .NET Delegates in Event-Based Asynchronous Pattern for SeniorsFeb 26, 2024. This article dives into the practical learning of delegates, emphasizing real-world examples. It explores the Event-Based Asynchronous Pattern (EAP) in C# and its advantages, using delegates to implement asynchronous operations effectively.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • .NET Delegates for Mere Mortals: IntroductionFeb 19, 2024. Explore .NET delegates practically in this article. Learn to use delegates for flexible, reusable code. Follow examples, download source code, and understand delegate syntax, including anonymous methods and lambda expressions.
  • Parameter Binding in Minimal API in ASP.NET CoreFeb 06, 2024. When building web applications using ASP.NET Core, developers often need to handle incoming data from HTTP requests. One crucial concept that helps achieve this is called parameter binding. Let's break down this fundamental idea in the context of Minimal API in ASP.NET Core.
  • What is Params In C#?Jan 31, 2024. In C# programming, the "params" keyword plays a crucial role in enhancing flexibility and convenience when dealing with methods that accept a variable number of the same type of parameters.
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • Power BI Parameters for Efficient Data Source ConfigurationJan 30, 2024. This article is about using Power BI Parameters for Data Source Configuration. In this Power BI project, connecting to an on-premise Business Central instance posed challenges during deployment. The solution involved using Power BI Parameters for dynamic and configurable data source connections.
  • Null Handling in C# Using Null-Conditional and Coalescing OperatorsJan 25, 2024. In C# programming, null handling is a critical consideration for robust and error-resistant code. This brief guide introduces two powerful operators, the null-conditional operator (?.) and the null-coalescing operator (??), designed to streamline null-related challenges.
  • Extending HttpClient With Delegating Handlers in ASP.NET CoreJan 17, 2024. Explore the power of the HttpClient class in ASP.NET Core through Delegating Handlers. Learn to create a custom handler for logging HTTP requests and responses, enhancing HttpClient functionality with extensibility and modularity.
  • How to Create Reusable Confirmation Modals in Blazor ServerJan 17, 2024. In this article, we will learn how to make confirmation pop-ups in your Blazor Server applications easily. Follow a step-by-step guide using parameters and EventCallback to create reusable models, making your app more user-friendly and efficient
  • Understanding Action and Func Delegates in C#Jan 17, 2024. Two commonly used delegates in C# are the Action and Func delegates. Let's explore what they are and how to use them. Delegates in C# have some features that distinguish them from normal methods.
  • Exploring the Power of Action and Func Delegates in C#Jan 10, 2024. Delegates play a pivotal role in C# programming, offering the ability to pass methods as parameters, store them as variables, and create custom events and callbacks. Among these, two special types of delegates—Action and Func—stand out for their ability to simplify code, enhancing readability and maintainability.
  • Default Lambda Parameters in C# 12Jan 05, 2024. C# 12 introduces a game-changer: default lambda parameters. This article delves into this powerful feature, showcasing its functionalities, advantages, and practical applications through detailed examples across diverse scenarios. Learn how to reduce code duplication and enhance readability.
  • Registry Configuration for Launching Programs by File ExtensionsJan 03, 2024. Associating a specific program with a particular file type through registry configurations involves defining entries in the Windows Registry.
  • What is Delegates in C#?Jan 03, 2024. Explore the power of delegates in C#, providing type-safe function pointers for indirect method invocation. Learn declaration, initialization, characteristics, and use cases for enhanced code flexibility and extensibility.
  • Ref Readonly Parameters in C# 12Jan 03, 2024. C# 12 unveils a hidden gem: ref readonly parameters. This article delves beyond the surface, offering a deep dive into their benefits, usage patterns, and how they differ from familiar options like ref and in. Embrace their power for safer, clearer, and more efficient code. In the current digital era, we try to de-couple applications from one another so it is supposed to adapt to plug it in another version or another application easily.
  • Action and Func Delegates in C#Jan 02, 2024. Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
  • Exploring Default Lambda Parameters in C# 12Jan 01, 2024. Default Lambda Parameters in C# 12.
  • Table(s): Temp Table, Table Variable and CTE (Common Table Expression)Dec 26, 2023. This article will discuss SQL Table like items, including temp table, table variable, CTE, Table-valued Parameters.
  • Clean Code : Avoid Too Many Parameters In MethodDec 18, 2023. In this article I will demonstrate code clean up by passing less number of parameters in method. One common challenge developers face is the Excessive parameters in their methods. Excessive parameters in methods can lead to code that is hard to understand, less readability, and challenging to maintain.
  • Default Interface MethodsDec 08, 2023. Default Interface Methods in C# 8.0. C# 8.0 introduces default interface methods, enabling the addition of methods to interfaces without breaking implementing classes. This allows seamless updates while avoiding the diamond problem and maintaining backward compatibility.
  • Design Pattern with .NET DelegatesNov 15, 2023. Your article is detailed and well-structured, providing a clear explanation of implementing design patterns using generic delegates.
  • Optional Parameters in SQL ServerOct 26, 2023. Optional parameters in SQL Server refer to the capability of defining parameters within SQL queries that can be left unspecified or set to default values if not provided by the user. This feature enhances the flexibility of SQL statements by allowing developers to create dynamic queries that adapt to different scenarios. By specifying default values or leaving parameters unassigned, optional parameters provide a means to simplify queries while accommodating various filtering or search criteria. This is particularly useful when constructing stored procedures, user-defined functions, or queries in applications where certain parameters may or may not be needed, offering a more versatile and adaptable approach to database interactions in SQL Server.
  • Types of Delegates in C#Oct 25, 2023. Here in this article, I am going to explain the types of delegates in C# along with the example.
  • PowerShell File Search AutomationSep 22, 2023. This PowerShell script automates file detail retrieval within a specified folder. It filters files by extension, displaying their name, size, and type, simplifying tasks like listing text files.
  • Routing in ASP.NET CoreSep 18, 2023. In this article, we delve into ASP.NET Core routing, a fundamental component of web applications. Routing determines how incoming requests are matched to specific actions and controllers, playing a pivotal role in efficient HTTP request handling. We explore the key concepts of ASP.NET Core routing, such as route templates, route values, constraints, and route parameters. Additionally, we provide practical examples to illustrate the implementation of routing in ASP.NET Core.
  • Power BI What-If AnalysisSep 12, 2023. Power BI What-If Analysis: Unleash Data-Driven Decision Making
  • Insert JSON Array into Table with Stored Procedure ParameterSep 04, 2023. Learn how to efficiently save and insert JSON array data into a database table using SQL Server's T-SQL language, with adaptable concepts for other database systems.
  • Generic in C#Sep 01, 2023. Generics in C# 2.0 revolutionize code design by decoupling classes and methods from data types. They're key in creating strongly typed, reusable, and performant code. You declare generics using the `<>` symbol.
  • Default Values in SQLAug 31, 2023. In this article we learn about Default Values in SQL.
  • Delegates in C# Aug 25, 2023. Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
  • Understanding C# DelegatesAug 14, 2023. Delegates in C# are a powerful feature that allow you to encapsulate a reference to a method inside a delegate object.
  • What is Delegates in C# .NET?Aug 12, 2023. Delegates in C# act as method pointers, enabling dynamic invocation of methods. They enhance code modularity and flexibility, finding use in event handling, callbacks, and asynchronous programming.
  • Gradient Descent OptimizationAug 03, 2023. Gradient Descent is a popular optimization algorithm used in machine learning.
  • Multi-Threading (4), Delegate based Asynchronous Programming ModelJul 03, 2023. This article will discuss delegate based Asynchronous Programming Model.