Related resources for methods
  • Essential JavaScript Array Methods: 10 Filters Every Developer Should Know3/19/2024 5:53:50 AM. Explore 10 essential JavaScript array methods including map, filter, reduce, forEach, find, some, every, sort, slice, and concat. Learn how to efficiently manipulate and organize data in web developm
  • Need To Know JavaScript Array-Methods3/18/2024 12:03:07 PM. Programmers are expected to know arrays because they are one of the most common things that programmers use. Thus, in this post, we are going to discuss the array-methods that you need to know as a Ja
  • 10 JavaScript Array Methods Every Developer Should Know3/18/2024 12:02:07 PM. JavaScript Arrays serve as list-like objects storing multiple values in a single variable. Essential methods like forEach iterate over elements; filter selects elements meeting criteria; map transform
  • What is DateTime Manipulation in C#?3/12/2024 9:09:31 AM. Master DateTime manipulation in C# with this comprehensive guide. Explore methods like 'Add' and properties for modification, extract components, and learn about rounding and truncating DateTi
  • Misconceptions About the Four LINQ methods3/9/2024 5:22:36 AM. Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault()
  • What is the Benefit of Strict Mode In React.js3/7/2024 10:30:26 AM. Strict mode in React enhances development by providing runtime checks and warnings, identifying unsafe lifecycle methods, and deprecated features, and promoting best practices for a more reliable code
  • 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: Don’t Test Your Private Method3/5/2024 10:35:09 AM. In this article, we will discuss the very controversial and important topic of whether the testing of a private method or private function is ethical.
  • Fundamentals of Unit Testing: Understand AreEqual and AreEqual<T> in Unit Testing3/5/2024 10:34:46 AM. Learn the fundamentals of unit testing with a focus on Assert.AreEqual and Assert.AreEqual&lt;T&gt;. These assertion methods are crucial in ensuring your code behaves as expected. Mastering them enhan
  • Fundamentals of Unit Testing: Understand AAA in Unit Testing3/5/2024 10:32:19 AM. Master the fundamentals of unit testing with a focus on AAA. Arrange, Act, and Assert. Dive into test methods, understand the AAA pattern, and leverage testing frameworks like Microsoft&#39;s Unit Tes
  • Destructuring And Event Handler In React3/5/2024 8:59:40 AM. Destructuring in React allows efficient extraction of values from objects or arrays. Event handlers manage user interactions, like clicks or input changes. They&#39;re essential for interactive UIs in
  • Vue Methods: Improving Interactivity in Your Vue.js Applications3/5/2024 5:45:41 AM. Vue.js, with simplicity and reactivity system, empowers developers to build interactive and dynamic web applications effortlessly. In addition to data properties, Vue introduces the concept of methods
  • Working With Date and Time in Java3/4/2024 11:45:39 AM. This article provides a comprehensive overview of the functionalities of the java.util.Calendar class through code demonstrations. It covers various operations on date objects utilizing methods from t
  • How Can We Get Last Characters Of A String In Java?2/29/2024 5:07:53 AM. In this article, we will learn about String in Java Programming Language with examples. Explore the intricacies of Java strings, covering their creation using literals or the &quot;new&quot; keyword.
  • Async Patterns in MVC Controllers for Efficiency or Adding Unnecessary Complexity?2/22/2024 8:08:10 AM. Explore the necessity of async patterns in MVC controllers—unveiling the intricacies of conventional and alternative coding styles
  • How to Convert OST to PST Manually - Top 3 Proven Methods2/21/2024 9:10:06 AM. Trying to know how to convert OST to PST manually? Read this article and get top three methods to export OST file to PST effortlessly.
  • What is Reflection In C#2/20/2024 6:02:24 AM. Introduction to reflection: Reflection is a powerful feature in C# that allows developers to inspect and manipulate types, methods, properties, and other elements of code dynamically at runtime. It en
  • DRY, YAGNI, KISS Engineering Principles2/19/2024 10:51:37 AM. In software development and engineering, certain guiding principles serve as beacons of efficiency and effectiveness. Among these principles, DRY, YAGNI, and KISS stand out as fundamental pillars that
  • .NET Delegates for Mere Mortals: Introduction2/19/2024 7:27:20 AM. 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 metho
  • What are Array Detection Mutation Methods in Vue.js2/14/2024 11:15:33 AM. Vue.js provides array mutation methods that enable reactivity, allowing Vue to detect changes and update the DOM dynamically. Understand and use these methods for effective array manipulation in Vue.j
  • Learn about Sealed Classes in C#2/14/2024 6:09:40 AM. In C# programming, sealed classes offer control over inheritance but can be restrictive. This article delves into unlocking their potential using extension methods and the decorator pattern. These tec
  • call(), apply(), and bind() in JavaScript2/10/2024 4:12:19 PM. The article describes the call(), apply(), and bind() commonly used in JavaScript. In JavaScript, call(), apply(), and bind() methods enable manipulation of function invocation by setting the context
  • What Are the Lifecycle Methods of Vue.js?2/9/2024 5:33:57 AM. Vue.js, a powerful JavaScript framework, offers essential lifecycle methods for component management. These hooks enable developers to execute tasks at various stages, enhancing control over component
  • Override Basic Object of Python2/6/2024 10:09:49 AM. This article introduces the concept of overriding methods in Python, focusing on the str and repr methods of the base object class. It explains how developers can customize the output when printing ob
  • How to Load .NET Assemblies in Powershell2/6/2024 8:35:11 AM. In this article, we will see how to load the .Net assemblies in the PowerShell and how to access the methods. The class library has been created to encapsulate functionality, forming the foundation of
  • Asynchronous Programming with Async and Await in C#2/6/2024 5:54:11 AM. C# leverages async and await keywords for asynchronous programming, crucial for I/O tasks. Defined with an async modifier, methods return Task or Task&lt;T&gt;. TAP enhances responsiveness, allowing c
  • CRUD Operations in Power Portal Using Web API Methods1/31/2024 10:47:45 AM. Create, Read, Update, and Delete (CRUD) operations in Power Portal using Web API methods and D365. This article covers Power Portal overview, portal creation, and performing CRUD operations for effici
  • What is Form Handling in Vue.js1/25/2024 3:57:48 AM. Forms are an essential part of web applications, enabling users to interact with and input data into an application. Vue.js simplifies the process of handling forms by introducing the powerful v-model
  • Extending List Functionality with C# Extension Methods1/22/2024 8:21:54 AM. In this article, I will demonstrate How to create an extension method in c# for List type. I will explain how we can extend the functionality of List without a new derived class. I will create extensi
  • Understanding Action and Func Delegates in C#1/17/2024 10:02:38 AM. Two commonly used delegates in C# are the Action and Func delegates. Let&#39;s explore what they are and how to use them. Delegates in C# have some features that distinguish them from normal methods.
  • Concatenate Two Strings in C# 1/17/2024 8:36:28 AM. In C#, string concatenation can be achieved using the + operator, String.Concat method, String.Join method, or string interpolation. Choose the method that suits your coding style and project requirem
  • Handling CORS (Cross-Origin Resource Sharing) in ASP.NET Core Web API1/15/2024 9:08:11 AM. Demystify CORS in ASP.NET Core! Learn how to seamlessly handle Cross-Origin Resource Sharing and overcome origin-related errors in your Web API with this concise guide.
  • Virtual Method in C#1/9/2024 9:15:39 AM. C# virtual keyword is used to create a virtual method in C#. Learn how to use virtual methods in C#.
  • Action and Func Delegates in C#1/2/2024 5:18:03 AM. 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. H
  • React Lifecycle Methods Demystified12/27/2023 11:54:54 AM. Unlock React&#39;s power with lifecycle methods. Optimize rendering, handle updates, and manage resources for efficient and responsive applications.
  • Handling HTTP Get Request Method in AngularJS Frontend and C# Backend12/26/2023 8:04:48 AM. This guide explores the utilization of HTTP GET request method within an AngularJS frontend and their corresponding processing and handling in a C# backend. It details how Get types of requests initia
  • Static Constructors in .NET12/20/2023 11:22:44 AM. Static constructors in .NET, a special breed in object-oriented programming. Unlike instance counterparts, they initialize once per type, controlling execution order and serving key roles in resource
  • How to use Array in JavaScript12/15/2023 10:08:22 AM. An array is an object that stores the collection of the same type of data in JavaScript Programming language.
  • Default Interface Methods12/8/2023 10:02:22 AM. 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 whi
  • CRUD Operation from Power Portal Using Web API Methods12/7/2023 5:12:17 AM. Unlock the potential of Dynamics 365 portals by mastering CRUD operations with Web API. This article guides you through creating and customizing portals, covering key aspects
  • Unraveling .NET Core Web API Structure11/29/2023 6:46:42 AM. Unlock the potential of .NET Core Web APIs. This guide explores their fundamental structure, HTTP methods (GET, POST, PUT, DELETE), and practical use cases for building robust and scalable application
  • Number Methods in JavaScript11/29/2023 5:34:19 AM. Number Methods in JavaScript. This article delves into JavaScript Number Methods, offering insights into their functionalities. These methods, akin to tools, empower developers to perform various oper
  • Response.Redirect true and Response.Redirect False in Asp.Net11/22/2023 8:45:44 AM. In this article we will learn about the Response.Redirect true and Response.Redirect False in Asp.Net
  • Abstract Class and Abstract Methods11/20/2023 10:41:10 AM. In this article I will explain abstract class and abstract methods. An abstract class in C# is a class that is declared abstract. It cannot be instantiated on its own; rather, it is meant to serve as
  • Dispose() and Finalize() Methods in C#11/15/2023 9:19:50 AM. The article explains a major difference between dispose and finalize methods.
  • Difference Between Overriding and Overloading Methods in C#11/10/2023 5:54:21 AM. Let&#39;s know the difference between Overriding and Overloading methods with example.
  • Types of Testing in Software Development11/1/2023 4:48:01 AM. This comprehensive article delves into the intricacies of software testing, outlining various types and their purposes. From unit testing to compliance testing, the piece provides insights into differ
  • The Third Pillar Of Object-Oriented Programming - Polymorphism:10/30/2023 10:26:15 AM. In the last part of this series you will see the third pillar of object-oriented programming (polymorphism); you will see how the polymorphism gives you the ability to treat related objects in the sam
  • Out And Ref Parameters In C#10/25/2023 9:03:07 AM. The out and the ref parameters are used to return values in the same variables that you pass an an argument of a method.
  • Extension Methods In C#10/23/2023 7:27:51 AM. This article explains Extension methods. Extension methods are static methods, that are always implemented in a static class. In C# we already have some built-in extension methods like Union, Where an
  • How to Explain Dependency Injection to a 6-Year-Old Kid10/17/2023 9:18:37 AM. In explaining Dependency Injection (DI) to a child, consider action figures equipped with interchangeable tools. Imagine adding new weapons without altering the figures, much like incorporating advanc
  • What is Action, Non-Action Methods and Types of Action Results10/10/2023 5:31:57 AM. In ASP.NET Core, actions are the methods within a controller that handle HTTP requests and produce HTTP responses. These actions can return different types of action results, which determine how the r
  • Extension Methods In .NET10/9/2023 5:30:56 AM. To put it in a simple manner, Extension Methods have been introduced in the .NET 3.5 framework to add methods to a class without altering the code of that class.
  • Exploring Top Level Statements - Programs Without Main Methods in C#10/9/2023 4:43:39 AM. Top-level statements are a new feature introduced in C# 9 that allows you to write code directly at the root of a file, without having to wrap it in a class or a method.
  • Types Of Polymorphism10/5/2023 11:33:21 AM. In this article you will learn about Polymorphism and types of polymorphism.Polymorphism is one of the fundamental principles in object-oriented programming (OOP). It allows objects of different class
  • Building a Robust ASP.NET Core Web API with Singleton Design Pattern and Three-Tier Architecture10/4/2023 4:38:38 AM. This example provides a basic structure for a Three-Tier Architecture in an ASP.NET Core Web API, implementing a Singleton Design Pattern for the Data Access Layer. Remember to adjust the code based o
  • Microsoft Fabric Lakehouse And How To Engineer Data Into The Lakehouse9/27/2023 11:31:10 AM. Microsoft Fabric Lakehouse is a data architecture solution offered by Microsoft that combines the capabilities of a data lake and a data warehouse, aiming to provide a unified platform for storing, ma
  • Functions in R Programming9/25/2023 9:22:52 AM. In this article, we will delve into the world of functions in R programming, exploring their syntax, examples, outputs, and even creating flow diagrams to illustrate their operation.
  • A Deep Dive into Static Classes in C#9/25/2023 4:26:42 AM. This article, &quot;Exploring Static Classes in C#,&quot; provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the
  • Exit Methods In C# Application9/22/2023 7:08:56 AM. In this article you will learn about different exit methods in C#.
  • How To Use Extension Methods In C#9/21/2023 4:17:56 AM. This article explains use of Extension Methods in C# to increase the functionality of a type (class).
  • ASP.NET (2) - ASP.NET Controls9/19/2023 4:15:48 AM. This series of articles on ASP.NET, originally from legacy OneNote notes, covers fundamental concepts. It offers valuable insights into current programming involving similar technologies like Angular
  • Object Instantiation in C#: Part II - Factory Methods9/18/2023 5:06:14 AM. There are many ways to approach object instantiation.&#160;In this article we’ll cover a few of the patterns used to instantiate objects. We&#39;ll look at different instantiation patterns used to con
  • 15 Effective Methods for Enhancing Performance in Our ASP.NET Core Application9/18/2023 4:39:38 AM. 15 Effective Methods for Enhancing Performance in Our ASP.NET Core Application.
  • Overriding The System.Object Class Methods9/15/2023 9:48:55 AM. In this article you will take a look on the Object class the base class for all data types in the .NET Framework. You will see also how to give your custom type a new look by overriding the Object cla
  • Custom Extension Method In C#9/15/2023 5:05:51 AM. In C#, extension methods are a powerful feature that allows you to add new methods to existing classes without modifying their source code. A custom extension method in C# is a user-defined method tha
  • Language Extensions In C# 2.09/13/2023 4:14:47 AM. This article intends to the C# 1.x developers and covers what-why-how the new enhancement .The philosophy behind the document is to have quick update on C# 2.0 and leverage this in your day to day dev
  • Object-Oriented Programming in JavaScript9/11/2023 7:15:17 AM. This article explores JavaScript&#39;s Object-Oriented Programming (OOP) fundamentals, covering object creation, constructor functions, methods, inheritance, and ES6 classes, enabling modular and main
  • File Class Tutorial in Java9/5/2023 9:57:19 AM. In this article, we will learn about the Java File class, its basic methods, and constructors provided by Java programming language.
  • Introduction to C# Methods - Part19/1/2023 4:14:25 AM. In this article, you will learn about C# methods and how to implement and use methods in a class.
  • Working on SortedDictionary in C#8/31/2023 10:08:00 AM. In this article I explain how to create the SortedDictionary and perform various operations of it using its properties and methods.
  • Exploring C# Tuples: Simplifying Data Structures with Examples8/31/2023 9:57:47 AM. Discover the Power of C# Tuples: Simplifying Data Structures. Learn how Microsoft&#39;s C# language utilizes lightweight Tuples for efficient data grouping, enhancing code clarity, and improving perfo
  • Enhancing Client Responses: Crafting Custom Middleware for Effective Error Handling8/27/2023 2:17:28 AM. Designing a robust error handling mechanism and returning meaningful error responses to clients is crucial for enhancing the reliability and user experience of your ASP.NET Core Web API. Here&#39;s a
  • Using Generics In C#8/26/2023 2:09:08 AM. Learn everything about generics in C#.
  • Various Operations in Dictionary Using C#8/24/2023 6:35:26 AM. The Dictionary type in the C# language provides fast lookups of keys to get their values. It allows use of keys and values of any type, including integers and strings.
  • Understanding Projections In LINQ With Select & SelectMany Enumerable Methods8/23/2023 9:11:12 AM. In this article I will try to explain how to use projections in LINQ with a collection of objects.
  • String Methods in JavaScript8/22/2023 5:48:12 AM. Explore essential JavaScript string methods in this guide. Learn to manipulate, extract, and transform strings using functions like charAt, concat, includes, indexOf, and more. Start mastering JavaScr
  • How to Access a Private Member of a Class From Other Class8/21/2023 12:11:23 PM. This topic pertains to object-oriented programming and addresses methods for accessing private members (variables and methods) of a class from a different class. In many programming languages, private
  • Partial Methods In C#8/21/2023 9:12:02 AM. The partial keyword in a C# method creates a partial method. In this article, you will learn about partial methods in C# and how to use a partial method in your .NET application.
  • HTTP Methods in .NET Core8/21/2023 5:37:07 AM. Explore HTTP methods in .NET Core for effective web communication. Understand GET, POST, PUT, PATCH, and DELETE roles. Utilize Microsoft.AspNetCore.Mvc for seamless handling and API creation. Enhance
  • Anonymous Methods in C# 2.08/20/2023 2:37:07 PM. In this article, we will explore the anonymous method feature introduced in C# 2.0.
  • Web API File Upload and Download Methods8/17/2023 11:07:09 AM. Discover step-by-step instructions and best practices for seamlessly implementing web API file upload and download functionality to optimize data sharing and collaboration, facilitating smooth digital
  • Generate Python Wrapper For C# Methods Using Reflection8/17/2023 9:11:19 AM. In this article, we will generate a Python wrapper around C# methods using reflection methods of .NET framework.
  • Stack Class in Java8/7/2023 10:49:32 AM. Java Collection framework provides a Stack class that models and implements a Stack data structure. The class is based on the basic principle of last-in-first-out.
  • Random Class in Java8/7/2023 9:55:58 AM. Random class is used to generate pseudo-random numbers in java. An instance of this class is thread-safe. The instance of this class is however cryptographically insecure.
  • Type Casting in Java8/7/2023 8:57:01 AM. Typecasting is a basic concept of Java programming language. Assigning a value of one type to a variable of another type is known as Type Casting in Java.
  • Math Class in Java8/3/2023 10:34:59 AM. The java.lang.Math class contains methods for performing basic numeric operations such as the elementary exponential, logarithm, square root, and trigonometric functions.
  • Resolving CORS Origin Using Custom Middle ware in ASP.Net Web API 8/2/2023 5:02:53 AM. In ASP.NET Core, middleware is a component or piece of software that sits in the request-response pipeline. Middleware is used to handle or modify incoming HTTP requests and outgoing HTTP responses. I
  • 5 Effective Methods to Center a DIV in CSS7/25/2023 5:48:56 AM. Master the art of centering divs and elements in CSS with our comprehensive guide. Explore 5 techniques including margin auto, flexbox, grid, absolute positioning, and transforms. Position your design
  • SQL: 3 Inserting Methods7/17/2023 6:35:17 AM. This article will discuss 3 SQL Inserting methods.
  • What are the Methods of Stream?6/22/2023 6:43:12 AM. A stream is a communication channel that connects an information source and destination.
  • LINQ Methods6/16/2023 6:47:15 AM. Linq Methods
  • Inner Classes in Java6/16/2023 5:10:25 AM. It is possible to nest a class definition within another class and treat the nested class like any other method of that class.
  • Java Math Class and Methods6/14/2023 5:26:28 AM. The java.math class contains methods that are used for geometric and trigonometric solutions.
  • Enumerators in C#6/12/2023 8:49:12 AM. Sample example shows how to use enumerators in C#. Learn how to use GetEnumerator, IEnumerator, Ienumerable interface.
  • What are sealed classes and sealed methods6/12/2023 6:31:20 AM. In this article, I will try to explain sealed classes and sealed methods in C# language.
  • Numpy for Data Science6/8/2023 7:06:26 AM.
  • Static Variables, Static Methods and Objects in C#6/7/2023 6:23:23 AM. In this article you will learn what is and how to work with static variables, static methods and objects in C#.
  • Pointers In C#6/6/2023 9:14:32 AM. C# Pointer is a variable that holds memory address of another type. In this article, learn how to implement pointers in C#. Here you will learn how to define C# Pointers.
  • C# Heap(ing) Vs Stack(ing) In .NET - Part Four6/6/2023 8:40:24 AM. Having a basic understanding of how memory management works will help explain the behavior of the variables we work with in every program we write. In this article we’ll look further into Garbage Col