Resources  
  • Boost Coding Productivity with Yield Keywords in C#Mar 28, 2024. In today's programming landscape, continuous learning is essential for developers to enhance productivity and efficiency. C# introduces new features like yield return and yield break, optimizing code execution and memory usage. Let's explore their significance through practical examples.
  • How to Create Refs in React.js?Feb 26, 2024. In React, refs facilitate direct access to DOM elements or class component instances. Learn how to create, access, and use refs for tasks like focus management, animations, and third-party library integration.
  • Vue Template Refs Improving DOM ManipulationFeb 22, 2024. Vue Template Refs are a powerful feature that enables you to directly access and manipulate DOM elements in a Vue.js application. By using the ref attribute and the $refs object, you can achieve dynamic and interactive user interfaces without relying on traditional DOM manipulation methods.
  • Synchronous vs Asynchronous Programming in ASP.NET Core Web APIJan 21, 2024. Synchronous Programming: In synchronous programming, tasks are executed one after the other, in a sequential manner. When a request is made to a synchronous API, the server processes the request and waits for it to be completed before moving on to the next task. This means that if one operation takes a long time to finish, it can block the execution of subsequent operations, potentially leading to slower response times for clients.Asynchronous Programming: On the other hand, asynchronous programming allows tasks to be executed concurrently. When a request is made to an asynchronous API, the server can initiate tasks and continue processing other requests without waiting for the previous tasks to be completed. This can lead to better scalability and responsiveness, especially in scenarios where certain operations, such as I/O operations, may take some time.ASP.NET Core Web API: In ASP.NET Core Web API, you have the flexibility to choose between synchronous and asynchronous programming models. The framework supports both approaches. Asynchronous programming is particularly useful when dealing with I/O-bound operations, such as accessing a database or making external API calls, where the application can continue processing other tasks while waiting for the I/O operation to complete.To implement asynchronous programming in ASP.NET Core Web API, you can use the `async` and `await` keywords in your controller methods, allowing you to write non-blocking code. This helps improve the overall performance and responsiveness of your API, especially in scenarios with high concurrency.
  • 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.
  • Beyond Keywords: Decoding the Hidden Meaning - Semantic SearchDec 20, 2023. Semantic Search represents a significant shift in how we interact with information. As technology advances, Engines will become even better at grasping complex concepts and nuances in language. As voice assistants become more sophisticated, semantic search will be crucial for accurate and natural interactions. Search engines will become personal knowledge hubs, anticipating our needs and offering relevant information even before we ask.
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web APIDec 19, 2023. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focus on implementing functionality rather than managing low-level HTTP communication.By breaking down each operation—POST, PUT, DELETE, GET, PATCH—and providing corresponding code snippets, the process of creating, retrieving, updating, and deleting resources becomes more accessible. The RestClientHelper class encapsulates RESTSharp configuration, promoting code reusability and maintainability.
  • How To validate Appsetting.json Configuration Values In .NETOct 16, 2023. In .NET applications, the appsettings.json file is commonly used to store configuration settings. It's essential to validate the values stored in this file to ensure that they meet the required format, data type, or specific constraints defined by the application. Validation of appsettings.json configuration values in .NET involves implementing checks and safeguards to confirm that the values are valid and usable by the application. This validation process helps prevent runtime errors and ensures the application behaves as intended, adhering to the specified configuration guidelines.
  • Passing an argument by reference in C#Aug 20, 2023. This article contains useful information about how to use ref keyword in your C# program with the proper and easy to understand example.
  • How To Use Order By in MySQLJun 23, 2023. Order by is a useful feature in MySQL that allows you to sort query results based on one or more columns in ascending or descending order. In this article, we will discuss how to use order by in MySQL with step-by-step examples.
  • Multi-Threading (3), async, await in C#Jun 21, 2023. This article will discuss Async, Wait key words in C#
  • Personalization Unleashed: Supercharge User Experiences with Azure Personalizer💥May 24, 2023. Discover the game-changing potential of Azure Personalizer! This powerful tool empowers developers to create personalized experiences that captivate and engage users like never before. By leveraging cutting-edge technologies like reinforcement learning, Azure Personalizer enables you to deliver tailor-made recommendations and content that leave a lasting impression
  • Native Keyword In JavaMay 19, 2023. In this article, you will learn Native Keyword in java
  • What is Default Keyword in JavaMay 11, 2023. In this article, you will learn about What is Default Keyword in Java
  • What Is Short keyword In C#May 10, 2023. In this article, you will learn about What is Short Keyword in C#
  • How to Use Clear Keyword An Array in C#May 10, 2023. In this article, you will learn about what is a Clear Keyword an array in C#
  • Simplifying Your C# Code: Why You Should Avoid Using 'Else' keywordMay 01, 2023. In this article will be seeing the benefits of avoiding else keyword in C# programming.
  • Match in RustApr 26, 2023. match control flow in rust
  • This keyword in JavaApr 25, 2023. In this article, you will learn about This Keyword in Java
  • What is Abstract Keyword in javaApr 22, 2023. In this article, you will learn about What is abstract Keyword in Java
  • Byte Keyword in JavaApr 21, 2023. In this article, you will learn Byte keyword in java.
  • How to Remove An Element from An Array In C#Apr 21, 2023. In this article, you will learn about How to Remove An Element from An Array In C#?
  • Regular function vs Arrow function in JavaScriptApr 20, 2023. In this article, we will learn the difference between the regular function and the arrow function in JavaScript
  • What Is Boolean Keyword In JavaApr 07, 2023. in this article, you will learn What is the boolean keyword in Java
  • What is the purpose of the 'async' and 'await' keywords in JavaScript?Mar 12, 2023. Learn what the 'async' and 'await' keywords are in JavaScript and how to use them in async code.
  • Difference Between Var, Dynamic And Object type In C#Feb 13, 2023. In this article, I am going to explain var, dynamic, and object keywords in detail.
  • Yield Keyword In C#Feb 13, 2023. In this article, we will learn about the Yield keyword in C#
  • Email Yourself New Tweet With Specific Keyword Using Azure Logic AppDec 21, 2022. In this article, we are going to learn about how to Email yourself a new tweet with specific keywords Using Azure Logic App
  • SQL KeywordDec 13, 2022. In this article we will learn about SQL Keyword
  • Out Vs Ref In C#Dec 12, 2022. In this article, you will learn about Out vs Ref in C#.
  • Using The New Required Keyword In .NET 7Dec 01, 2022. In this article, you will learn how to use the new required keyword in .NET 7.
  • Ref vs Out In C#Nov 11, 2022. In this article we learn about Ref vs Out in C#.
  • Search A String Entire Database (SQL Server)Oct 20, 2022. Searching a string in all the tables available in the SQL Server database
  • Type Checking in C#Sep 27, 2022. In this article you will learn about type checking in C#.
  • Ref Vs Out And Value Type Vs Reference TypeSep 06, 2022. In this article, you will learn about ref vs out and value type vs reference type.
  • Var, Final And Dynamic Keywords In Flutter 😎Jul 02, 2022. In this article, we will learn about var, final and dynamic keywords it’s more important in dart.
  • SETS In PythonJun 27, 2022. This article is dedicated to concepts of SETS in Python. Sets are one the built-in Data Structure of Python.
  • Working With CSV In PythonDec 16, 2021. In this article, you will learn about CSV In Python.
  • Working With Async/Await/Task Keywords In DepthDec 13, 2021. In this article, you will learn how to work with Async/Await/Task keywords in depth.
  • Classes And Objects In PythonNov 30, 2021. In this article, you will learn about Class and Object in Python.
  • How To Use Yield In Python?Nov 09, 2021. In this article, you will learn what is yield and how to use the yield keyword in python?
  • Eval Keyword In PythonSep 29, 2021. This article is useful to understand switcher and eval in python.
  • Learn About Exception Handling In JavaApr 18, 2021. Through this article, users will get in-depth knowledge of Exceptions and Exception handling used in Java.
  • Pro Tips For React Developers 🤠Jan 28, 2021. In this article, you will learn about Pro tips for react developers.
  • How To Define Variables And Constants In RDec 08, 2020. In this article, I am going to explain about variables and constants in R.
  • Using C# Checked Keyword And .NET Numerics BigIntegerOct 22, 2020. In this article, you will learn about C# Checked Keyword and .NET Numerics BigInteger.
  • Use Of Static Keyword In JavaAug 20, 2020. In this article, you will learn different use-cases of static keyword in java.
  • Static Instance Variable And Non-Static Instance Variable Difference - JavaAug 06, 2020. Let see the use of static keyword with the variable and the difference between the static variable and non-static variable in Java.
  • Ref Vs. Out Parameter In C#Jul 06, 2020. These 2 widely-used keywords have advantages when it comes to returning multiple values.
  • Static Keyword in JavaApr 09, 2020. In this article, I emphasize the static keyword's various purposes in Java
  • Forwarding Refs In ReactFeb 12, 2020. In this article, you will learn about Forwarding Refs in React.
  • Different Ways to Create Refs in ReactFeb 05, 2020. In this article, you will learn about different ways to create Refs in React.
  • React - Learn From Scratch - Part SixJan 28, 2020. In this article we'll learn more about this and how we can use bind & arrow functions to use specific object as this inside function.
  • React - Learn From Scratch - Part FiveJan 27, 2020. In this post, we'll learn about JavaScript classes and then we'll learn another type of React components (i.e. Class Component.)
  • Python Tokens ExplainedNov 30, 2019. In my previous article, we covered how to declare variables in Python Editor Jupyter. Now, we will continue with more features and learn the concept of object-oriented programming in Python. In this article, we learn about the Python Tokens: Keywords, Identifiers, Literals and Operators.
  • Keywords In SEO And Their TypesOct 31, 2019. In this article, you will learn about Keywords in SEO and their Types.
  • Learn About Functions In PythonOct 09, 2019. This article illustrates the use of functions in Python. We will learn about different types of arguments and functions in Python and their uses.
  • Difference Between Var, Let And Const In JavaScriptSep 08, 2019. This article will explain the nuances of JavaScript variable declaration with var, let, and const. Explore their scope, hoisting behavior, and mutability. Learn when to use each for flexible and error-resistant coding.
  • Memo And Refs In ReactJul 31, 2019. This article talks about the concept of Memo and Refs in React.
  • Implement Multiple Inheritance In C#May 28, 2019. C# does not support multiple inheritance for classes in the traditional sense, meaning a class cannot inherit from more than one class. However, C# provides mechanisms to achieve similar functionality using interfaces and a concept known as "multiple interface inheritance" or "interface-based multiple inheritance.
  • The Top Seven Least-Known, Yet Important, C# FeaturesMay 26, 2019. In this article, you will learn about some of the top important C# features that are often not very well known.
  • When To Use Static Classes In C#Apr 30, 2019. The static modifier in C# declares a static member of a class. The static modifier can be used with classes, properties, methods, fields, operators, events, and constructors, but it cannot be used with indexers, finalizers, or types other than classes.
  • What Does var Mean In C#?Mar 07, 2019. The var keyword is used to declare a var type variable in C#. In this article, you will learn how to use a var in C#.
  • Data Locations 🗺️ In SolidityFeb 06, 2019. This article talks about how to use Storage and Memory keywords in Solidity.
  • How To Use Dynamic To Return Different Objects On Runtime In C#Dec 05, 2018. A lot of time you get a requirement to return different kind of object from a single method. Is it possible? Yes there are ways by which you can deliver different objects on run time and dynamic is one of those solution.
  • Working With New Enhanced Feature Of ‘Ref’ Keyword In C# 7.0Sep 20, 2018. Here, in this article, I will try to explore the new enhanced feature of ‘ref’ keyword.
  • New C# 7 Features - Ref Returns And Out Variables - Part ThreeJul 30, 2018. This blog explains the improvement for ref returns and out variable in C# 7.0.
  • Learn SharePoint In Series - Part Fourteen - Enterprise Metadata And Keywords Settings In ListJun 20, 2018. Explore enterprise metadata and keyword settings in SharePoint lists. Learn to manage content classification, taxonomy, and information governance effectively within your organization's information architecture.
  • SQL Server Tips - SQL Server Paging Made Easy With OFFSET And FETCH KeywordMay 14, 2018. This post contains SQL Server tips for applying paging in SQL that can be used in real-world applications for long-running processing with better performance
  • Ref And Out KeyWords - Two Separated TwinsMar 26, 2018. In this article, I am going to explain the concepts of some useful keywords like Ref & Out parameters. These keywords are used along with the data to be passed to a function as parameter. Below I will explain a brief explanation about each of these keywords with an example.
  • Keywords - Const, ReadOnly, And Static ReadOnly In C#Mar 20, 2018. In this article, I am going to explain about const, read-only, & static keywords in C#.
  • An Introduction to Method Overriding - Virtual, Override And New Keywords in C# explainedMar 06, 2018. Use of inheritance and polymorphism has become an integral part of our life as a programmer. Inheritance provides a lot of benefits including code reusability, separation of concerns, cleaner code, extensibility etc.
  • Custom Extension Method In C#Aug 23, 2017. 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 that is added to an existing class or interface using the this keyword as the first parameter of the method. This enables you to invoke the extension method on instances of the target class or interface as if it were a native method.
  • Working With Ref Returns And Ref Local In C# 7.0Mar 24, 2017. This article explains about Ref Returns and Ref Local , which are introduced in C# 7.0 and demonstrates how to use it in software development.
  • C# ref KeywordMar 20, 2017. C# ref and C# out keywords are used in method parameters. This article helps you decide whether to use a ref or out keyword, especially when the parameter types are value types.
  • Understanding ref And out With C# 7Feb 20, 2017. This article explains the usage of ‘ref’ & ‘out’ in depth along with the enhancement done in C# 7.
  • C# Ref ReturnsJan 03, 2017. Ref returns were introduced in C# 7.0. Learn how to use ref returns in C#.
  • Why Var Keyword Is Frequently Used In C#May 05, 2016. In this article you will learn why var keyword is frequently used in C#.
  • Voice of a Developer: Part Nine - JavaScript Useful Reserved KeywordsMay 01, 2016. In this article you will learn about JavaScript useful Reserved Keywords.
  • Virtual, Override And New Keywords In C#Apr 27, 2016. In this article you will learn about Virtual, Override, and New Keywords in C#.
  • Ref And Out Keywords In C#Apr 10, 2016. In this article, we will talk about the ref and out keywords in C#.
  • Learn a Tiny Bit of C# in Seven Days - Day FiveMar 12, 2016. In this article we will cover important topics of C# and try to unleash them practically.
  • "This" Keyword in C#Feb 29, 2016. In this article you will learn about "This" keyword in C#.
  • Static Keyword In C#Feb 17, 2016. In this article, I'll discuss C# static keyword, its purpose and how to create static classes using C#. I'll also cover static variables, static methods, static properties in C#.
  • Dynamic Data Type In C#Feb 08, 2016. C# dynamic keyword declares a dynamic variable that can store any type. Lean how to use a dynamic type in C# and how to convert a dynamic type to other types in C#.
  • Add Enterprise Keyword Column In SharePoint List Using JSOMDec 10, 2015. In this article I will explain a way to add the Enterprise keyword column in SharePoint List using SharePoint Hosted app.
  • Keywords In C# With Real Life ExampleNov 15, 2015. In this article we will discuss about Keywords in C# with real life example.
  • Package Keyword In JavaOct 31, 2015. In this article you will learn about Package control keyword in Java.
  • Access Modifiers In JavaOct 30, 2015. Java Access Modifiers. In this article, you will learn about Access Modifiers keywords in Java.
  • 10 Most Used Keywords In C#Oct 23, 2015. In this article you will learn about the most useful keywords in C# with example.
  • Ref And Out keyword In C#Oct 08, 2015. In this article, I will demonstrate you the actual use of ref and out keyword. I will also show you examples on this demonstration.
  • Constant, ReadOnly And Static Keyword In C#Oct 06, 2015. In this article, I will demonstrate you all, what are the Constant, ReadOnly and Static keyword in C#.
  • Params In C#: Pass Variable Number Of Parameters To MethodOct 05, 2015. In this article we will discuss about params keyword in C# and how to pass variable number of parameters to method.
  • Learn All About Inheritance in C#Oct 02, 2015. Inheritance is a fundamental concept in object-oriented programming (OOP) and is widely used in C#. It allows you to create a new class that is based on an existing class, inheriting its attributes and behaviors. Inheritance enables code reuse and promotes a hierarchical organization of classes, making it easier to manage and extend your codebase. Here's a comprehensive overview of inheritance in C#.
  • JSOM Keyword Query Search In SharePoint Sep 10, 2015. In this article we will learn about JSOM Keyword Query Search in SharePoint .
  • Understanding Sealed Keyword For Classes And Methods In C#Sep 03, 2015. In this article we will implement sealed keyword for classes and methods in C#.
  • Using Directive With Keyword Static in C# 6.0Sep 02, 2015. In this article you will learn how to use directive with Keyword Static in C# 6.0.
  • Difference Between Await and ContinueWith Keyword in C#Aug 02, 2015. This article explains the difference between ContinueWith and await in the C# language.
  • Ref And Out Keywords In C#Jul 25, 2015. In C#, the ref and out keywords are used as parameter modifiers in method signatures to indicate how method arguments should be treated. They are often used when you need to pass arguments to a method and potentially receive modified values or multiple values back from the method. Here's a description of these keywords and their usage.
  • Usage and Importance of Using in C#Jul 22, 2015. This article explains the various ways to use the using keyword in C# and what its benefits are.

About Ref-Keyword

NA

OUR TRAINING