Related resources for Read
  • Rotate Boundingbox Based on Angle: Azure OCR API/Read/Form Recognizer4/24/2024 8:00:53 AM. To manipulate the results from Azure OCR API, we sometimes need to rotate the boundingBox in the response with the tilted angle in order to do some operations. Here we are looking at how this rotatio
  • Write And Read Pandas Dataframe And CSV To And From Azure Storage Table4/24/2024 7:57:24 AM. This tutorial focuses on integrating Pandas with Azure Storage Table, enabling writing and reading DataFrames to and from CSV files stored in Azure Storage. It covers data transfer between local envir
  • Improve Performance of .NET Application4/24/2024 7:42:39 AM. Enhance .NET application performance through techniques like code profiling, caching, asynchronous programming, and database query optimization. Implementing these strategies boosts efficiency and res
  • How To Use Readxl Package To Read Data In R4/24/2024 7:31:17 AM. Learn to efficiently import data from Excel files into R using the readxl package. Simplify data reading, analysis, and manipulation for seamless data science workflows.
  • Reversing Parameter Order with Named Arguments in C#4/24/2024 6:36:35 AM. 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 callin
  • Best Practices for Threading in .NET C#4/24/2024 6:26:03 AM. Threading is a powerful feature in .NET C# that allows developers to execute multiple tasks concurrently. In this article, we'll explore best practices for managed threading in .NET C#, covering t
  • How To Convert List <DataTable> Into DataSet4/23/2024 11:15:59 AM. Retrieve employee details from database using stored procedure. Group data by department with LINQ. Export List&lt;DataTable&gt; to Excel with multiple spreadsheets. Bind List&lt;DataTable&gt; to Gri
  • Understanding the Python Global Interpreter Lock (GIL)4/23/2024 11:06:43 AM. The Python Global Interpreter Lock (GIL) is like a traffic cop inside your computer that makes sure only one thing happens at a time in Python, even if your computer has multiple processors.
  • .NET 4.5 Read-Only Interfaces4/23/2024 8:58:19 AM. .NET Framework 4.5 introduced read-only interfaces, facilitating immutability in C#. These interfaces enforce that implementing classes cannot modify properties, enhancing code predictability and safe
  • ConcurrentBag<T> in C#: Thread-Safe Collection Guide4/23/2024 8:49:54 AM. 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
  • ConcurrentBag<T> in C#: Thread-Safe Collection for Concurrency4/23/2024 5:39:26 AM. 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.
  • Exploring the ConcurrentQueue<T> Class in .NET C#4/22/2024 5:48:24 AM. In multi-threaded programming, thread safety and efficient data sharing are critical considerations to ensure smooth and reliable application execution. This article dives into the features, usage, a
  • Concurrent Dictionary for String Comparison in .NET Core4/20/2024 7:04:27 AM. In .NET Core, the `ConcurrentDictionary&lt;TKey, TValue&gt;` class provides a thread-safe collection for storing key-value pairs, making it suitable for concurrent operations in multi-threaded environ
  • Queue & Dequeue with Concurrent Dictionary in .NET Core4/20/2024 7:02:23 AM. In multi-threaded applications, efficient handling of concurrent data structures is crucial to ensure thread safety and performance. While .NET Core provides a variety of thread-safe collections, each
  • Exploring the fundamentals of concurrent programming in .NET4/19/2024 11:57:13 AM. Concurrency is vital for efficient applications. .NET offers Thread, Multithreading, Task, Async &amp; Await, Threadpool, Lock, and Deadlock tools. Understanding them enhances .NET development for sca
  • How to Send & Read Messages with Azure Service Bus Queues in Azure Functions4/17/2024 7:47:00 AM. Learn to efficiently manage message communication in Azure using Azure Functions. Discover how to send and read messages from Azure Service Bus queues seamlessly, leveraging the power of serverless co
  • Singleton vs. Static Class in C# - Choosing the Right Approach4/17/2024 4:54:57 AM. Singleton and Static classes can only have one instance available in memory, and both classes can be used to maintain the global state of an application, however, there are many differences between th
  • Singleton Vs Static Classes in C#4/17/2024 4:49:59 AM. Why do you use a Singleton class if a Static class serves the purpose What is the difference between Singleton and Static classes and when do you use each one in your program?
  • A Guide To Crafting Immutable Objects With C# 10's Init-Only Properties4/16/2024 10:51:36 AM. Discover how C# 10&#39;s init-only properties empower developers to craft immutable objects with precision, enhancing code readability and maintainability. In this article, Ziggy Rafiq demonstrates ho
  • Code readability is enhanced with C# 10 top-level statements4/16/2024 10:18:02 AM. Ziggy Rafiq discusses tackling challenges in software component specification standards through the implementation of solutions such as adapters and bridges for standard mediation, abstraction and enc
  • Record and Pattern Matching in C# 94/16/2024 10:08:20 AM. Unlock the elegance of C# 9 with this article on Records and Pattern Matching. Learn how to craft concise and readable code using the simplicity of Records for immutable data structures and the enhanc
  • Handling Date Time In Excel To SharePoint List4/15/2024 11:42:15 AM. Automate handling Email attachments named &quot;Excel.xlsx&quot; in Outlook by adding them to SharePoint library. Read Excel data, insert/update in SharePoint list based on primary key. Manage Date Ti
  • AppSettings - Six Ways To Read The Config In ASP.NET CORE 3.04/11/2024 6:23:13 AM. Learn six methods to read AppSettings in ASP.NET Core 3.0, including options pattern, configuration providers, IConfiguration interface, environment variables, and JSON files, ensuring flexibility and
  • Mastering SOLID Design Principles in C#4/11/2024 3:58:49 AM. SOLID design principles provide guidelines for creating maintainable, flexible, and scalable software. They enhance code readability, reduce duplication, and promote effective testing. Principles like
  • Future Ready Blazor Application Architecture4/9/2024 9:16:46 AM. Learn how to separate UI components in Blazor applications for code reuse using Razor Class Library. Step-by-step guide to create and integrate UI components into Blazor Server applications. Future-re
  • Singleton Design Pattern With C# Sample4/8/2024 9:13:27 AM. In this article, we will Explore the Singleton Design Pattern in C# with a concise sample code demonstrating its implementation. Learn how to ensure a class has only one instance, providing global acc
  • .NET Synchronous vs Asynchronous4/4/2024 6:39:42 AM. Synchronous programming in .NET involves sequential execution, blocking the current thread until a task completes. Asynchronous programming, on the other hand, enables non-blocking execution, improvin
  • How To Make A Chat Application Using Sockets In Java4/3/2024 9:38:00 AM. Creating a chat application in Java involves utilizing sockets for network communication between client and server. Implementing input/output streams facilitates message exchange. Multi-threading ensu
  • Multithreading With .NET3/29/2024 6:46:05 AM. Multithreading allows a program to run multiple threads concurrently. This article explains how multithreading works in .NET. This article covers the entire range of threading areas from thread creati
  • File Handling In C# .NET3/29/2024 6:31:51 AM. This article explores C# .Net&#39;s System.IO namespace for file manipulation tasks, covering directory exploration, file operations like read, write, copy, delete, and more. It delves into DirectoryI
  • Difference Between Const, ReadOnly and Static ReadOnly in C#3/28/2024 10:38:00 AM. Common keywords like Const, ReadOnly, and Static ReadOnly are quite confusing. So today we will discuss these keywords and try to understand the difference between Const, ReadOnly, and Static ReadOnly
  • Optimizing Dynamics 365: Thread Jobs for Multiple Record Updates 3/27/2024 8:56:42 AM. In this article, we will learn how to utilize Thread Jobs for Updating Multiple Records in Dynamics 365 using PowerShell Script. Retrieving all Contact Records and Updating First and Last Names using
  • Explain Naming Conventions in C#3/21/2024 4:47:29 AM. Naming conventions are a set of rules and guidelines used for naming variables, functions, classes, and other entities in a programming language. They help improve code readability, maintainability, a
  • Explain about Spread Operator in C# 12 3/20/2024 6:11:27 AM. The spread operator, a recent addition to C# in version 12, streamlines working with collections like arrays and dictionaries. It simplifies tasks such as cloning and merging, enhancing code readabili
  • Learn about Asynchronous Events in C#3/20/2024 5:49:33 AM. Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Id
  • Angular 18 is Getting Ready3/19/2024 4:41:16 AM. Angular 18 is getting ready and will be released very soon. Angular 18 promises both stability and innovation, aiming for a leading-edge development platform while ensuring backward compatibility.
  • How to Mark an Email as Read When Logic App Performs an Action3/18/2024 6:18:11 AM. Azure Logic Apps streamline business processes by automating workflows between various services without coding. Follow steps to create workflows for tasks like moving email attachments to Blob Storage
  • How Do I Open an OCR File in PDF?3/5/2024 4:22:46 AM. Explore methods to open OCR files in PDF. Get the best guides to open an OCR file in PDF with easy steps. Open OCR PDF files in C# using the iTextSharp library. Install iTextSharp, write C# code to ex
  • How to Open a PSD File Without Photoshop3/2/2024 10:17:16 AM. Explore methods to open a PSD File without Photoshop. Get the program to open a PDF file without Photoshop using C#.
  • Tech Reset: Are You Future-Ready?3/1/2024 4:57:20 PM. Learn how to be ready for the tech reset.
  • Save Specific Twitter Tweet To Excel Spreadsheet With Azure Logic App3/1/2024 10:46:14 AM. Utilize Azure Logic App to automate capturing specific Twitter tweets and storing them in an Excel spreadsheet. Employ Twitter API integration, webhooks, and Azure Blob Storage for seamless data trans
  • How to Open, Read or View MS SQL Error Log File2/29/2024 10:47:38 AM. Explore methods to open, read, or view SQL Server Error Log File. Get the best solution to open or view the SQL Server Log File of MS SQL Server in easy steps.
  • How to Read or View Exchange Database EDB File Programmatically2/28/2024 6:03:51 AM. Explore methods to Read or View the Exchange Database EDB File Programmatically. Know how to use this Exchange Server Managed API to View or Read Exchange EDB files.
  • Better Implementation Of Singleton Pattern in .NET2/28/2024 4:09:40 AM. This article explains the mistakes made in writing Singleton Pattern in the multithreaded environment create a bug and how to bring a solution to it.
  • Read JSON File to Spark DataFrame and Fabric Lakehouse for Downstream Analytics2/27/2024 6:38:21 AM. This video shows how to read JSON file into Spark DataFrame using Fabric Notebook and how to write the the data to Fabric Lakehouse for downstream data analytics.
  • How to Create CSV File from Excel Spreadsheet 2/27/2024 4:16:16 AM. Explore methods to Create CSV File from Excel Spreadsheet. Get the best solutions to carte or save CSV files from Excel Spreadsheet in easy steps.
  • Create an Excel Template and Upload It to the Library2/26/2024 8:47:15 AM. In this article, Here, you&#39;ll find instructions on how to create and use an Excel template for various tasks, ensuring a blank starting point for your projects.
  • How To Check If Your System Is Ready For Windows 112/22/2024 11:32:18 AM. This content provides an introduction to Windows 11, highlighting its key features, minimum system requirements, compatibility testing process, availability details, and useful links for further infor
  • Concurrency in Flutter: Exploring the Power of Isolate2/15/2024 10:30:21 AM. Learn how to use Isolates in Flutter to do multiple tasks at once. This article will help you to understand and use Isolates to make your Flutter apps run better and faster.
  • Azure Immersive Reader Technology - geting started!2/14/2024 1:23:24 PM. Using Azure Immersive Reader Technology to Help People Consume and Understand Text Based Information
  • Multithreading in C#: Processes, Threads, and Performance Optimization2/7/2024 10:06:03 AM. In this article, we will learn to Explore how threads are managed, synchronized, and executed at the kernel level, shedding light on the core mechanisms of concurrency and parallelism.
  • Easily Read Key Vault Secrets From ASP.NET Core Web API Application2/7/2024 5:29:31 AM. Azure Key Vault facilitates secure storage and access to sensitive information such as API keys and passwords. It organizes secrets into logical groups called vaults. Refer to Microsoft&#39;s document
  • Null Conditional Check in C# 62/6/2024 8:32:44 AM. This article explains the Null condition check in C# 6.&quot;Delve into the Null Conditional Operator in C# 6.0, streamlining null checks for enhanced simplicity. Learn its application in handling pro
  • Data Vault Design in Azure SQL - Read PII with Customer Keys2/5/2024 11:00:54 AM. Data Vault design in Azure SQL - Utilizing Customer keys to read PII information in databases. Ensuring data security in the cloud era is crucial, especially with the rise in data attacks. Protecting
  • Converting Outlook MSG to HTML in C# for Enhanced Readability1/22/2024 9:17:37 AM. Converting Outlook MSG to HTML in C# for Enhanced Readability&quot; describes the process of converting Microsoft Outlook MSG files into HTML format using the C# programming language. This conversion
  • 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
  • Rest & Spread Operators in JavaScript1/18/2024 9:35:59 AM. The rest and spread operators are powerful features that allow you to work with arrays and function parameters in a more flexible and concise way.
  • What is ThreadPool Class in C#?1/10/2024 5:53:31 AM. In this article, we will learn about ThreadPool in C# for efficient parallel programming. Learn its benefits, working mechanism, and how it compares to manual thread creation. Utilize the ThreadPool c
  • ThreadPool in C#: Practical Examples1/10/2024 5:48:08 AM. Explore practical examples of using ThreadPool in C# for parallel tasks. Learn how to queue work items, handle synchronization, monitor and manage ThreadPool, and follow best practices for efficient c
  • Introduction to Multithreading1/8/2024 10:02:42 AM. Learn about Multithreading and the difference between using Thread and threadPool. The difference between multithreading and concurrency
  • Default Lambda Parameters in C# 121/5/2024 11:16:42 AM. 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 exam
  • Immutability: Creating Custom Immutable Types in C#1/4/2024 10:41:56 AM. In this article we will discuss about how to create custom immutable type in c#
  • Ref Readonly Parameters in C# 121/3/2024 12:25:29 PM. 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 re
  • What is Collection Expressions in C# 12?1/3/2024 7:20:15 AM. 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 fr
  • What is Primary Constructors in C# 12?1/3/2024 7:01:30 AM. Ditch the boilerplate and embrace elegant object creation with C# 12&#39;s primary constructors. This feature takes the hassle out of initialization, simplifies member assignment, and clarifies your c
  • Create AWS S3 Bucket and Read Parquet File from Fabric Notebook1/1/2024 7:24:24 AM. In this video, I covered how to get started with AWS S3, create S3 bucket, access key, secret key and read data in Fabric Notebook into the AWS S3. If you enjoy this video article, give it a thumps up
  • ASP.Net Core - How to Read values from Appsettings.json12/31/2023 12:03:20 PM. Asp.Net Core – How to Read values from Appsettings.json
  • Read in React.js CRUD Operations12/21/2023 10:00:30 AM. Explore the pivotal role of &quot;Read&quot; in React.js CRUD operations with insights into MVC architecture, MERN/MEN stacks, and the &quot;View&quot; in React. Dive into state management, Axios data
  • Building a Multithreaded Web Server in Rust from Scratch12/19/2023 8:58:32 AM. This article will explore how to build a multithreaded web server in Rust.
  • Read and Import Data from PDF File using MSFT Fabric12/4/2023 6:24:44 AM. Read and Import Data from PDF File using MSFT Fabric.
  • Improving Code Readability in View Section Using Return Templates12/3/2023 1:17:40 PM. The return template is a one of the new features added in the latest version of the CodeBehind framework. Using this feature completely separates the server-side codes from the view section.
  • Reading properties of an object in C#11/26/2023 5:47:50 AM. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metad
  • Getting Started with .NET Aspire for Production Ready Cloud Native Apps11/20/2023 10:04:13 AM. .NET Aspire is a user-friendly solution designed for crafting applications ready for the cloud. It simplifies the development process, allowing developers to focus on their core business logic. Packag
  • How to Trigger Service Bus using Azure Function?11/15/2023 6:52:14 AM. In this article, we will learn how to trigger service bus queue using azure function.
  • Difference Between Concurrency and Parallelism in C#11/9/2023 5:31:39 AM. The article you provided gives a comprehensive overview of the concepts of concurrency and parallelism and their relevance in C# programming. It highlights the distinctions between the two concepts an
  • Java 21: New Features and Examples11/2/2023 10:48:59 AM. 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 reco
  • New Features of Rust 1.7311/2/2023 7:18:05 AM. 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 R
  • C# 9.0 - Introduction To Init-Only Property10/30/2023 9:02:09 AM. C# 9.0 introduced a new feature called Init-Only Properties, enhancing the language&#39;s capabilities for defining immutable types. Init-only properties allow you to create read-only properties that
  • Read XML From File Action in Desktop Flow using Microsoft Power Automate10/30/2023 8:12:08 AM. Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
  • Asynchronous File I/O in C#10/30/2023 7:20:05 AM. Thisarticle on asynchronous file I/O in C# is well-structured and informative, covering all the essential aspects of the topic. You have effectively introduced the concept of asynchronous programming,
  • ConcurrentQueue in C#10/30/2023 6:05:13 AM. This article provides a comprehensive overview of the ConcurrentQueue class in C# and its role in managing concurrent programming. You effectively explain the challenges related to concurrency and the
  • BackgroundWorker In C#10/20/2023 6:00:59 AM. C# BackgroundWorker component executes code in a separate dedicated secondary thread. In this article, I will demonstrate how to use the BackgroundWorker component to execute a time consuming process
  • Read And Upload Excel Data To Oracle Table10/18/2023 10:14:17 AM. In the realm of data management and integration, the process of reading and uploading Excel data to an Oracle table involves multiple fundamental steps. First, the data needs to be read from an Excel
  • .NET Task Parallel Library vs System.Threading.Channels10/18/2023 6:49:02 AM. Concurrency in modern software development is vital for applications to efficiently manage multiple tasks simultaneously. In the .NET ecosystem, developers have two powerful tools for concurrency: the
  • Data Reading From AWS Kinesis Data Stream10/16/2023 9:46:19 AM. Data Reading from AWS Kinesis Data Stream involves the real-time retrieval and processing of streaming data within the Amazon Web Services (AWS) Kinesis ecosystem. This process allows seamless integra
  • C# StreamReader Code Examples10/13/2023 4:58:22 AM. C# StreamReader is used to read characters to a stream in a specified encoding. Learn how to use C# stream reader. C# StreamReader code example.
  • Read Excel File In Windows Application Using C#10/12/2023 6:52:57 AM. In this article we will learn how to read an Excel file in Windows Application using C#.
  • Synchronous Threading10/11/2023 8:21:33 AM. Well this article is basically to explain how to make threads run synchronously.
  • How To Read/Write Lines And Bytes In C#10/10/2023 9:58:54 AM. In this article we will discuss about how to Read/Write the Lines and Bytes in a file in C#.
  • How To Call Stored Procedure In Entity Framework10/10/2023 8:44:08 AM. In this article, I will demonstrate how to call a stored procedure in entity framework? There are many different way to call stored procedure from entity framework.
  • Reading Zip Files with SharpZip Library in .NET10/9/2023 8:45:51 AM. SharpZipLib is a library for .NET that allows working with compressed files, particularly ZIP archives. To read a ZIP file using SharpZipLib, you first install the library and import the necessary nam
  • Using C# Regions To Improve Code Readability10/9/2023 5:52:17 AM. C# region. Regions in C# is a useful feature that helps manage code in areas that can be hidden or visible. Learn how to use regions in Visual Studio to improve code readability.
  • Populating DataView From DataReader10/6/2023 11:12:43 AM. This article will illustrate how to populate DataView from DataReader in C#. In many scenarios we may have the data in DataReader which is required to be bind to GridView or some other control. In thi
  • Increase Performance Of LINQ By Parallelism10/5/2023 7:31:33 AM. Parallelism solves many problems in the computing world if done in the right way; parallelism is not good if the task is small and needs synchronization of resources, such a scenario would hurt perfor
  • Threads In C#10/5/2023 5:56:28 AM. Learn how to use threads in C#.
  • Reading and Writing XML in C#10/4/2023 8:56:02 AM. In this tutorial, you will learn how to read and write XML documents in Microsoft .NET using C# language.
  • Automate Reading of MSExchange Email Attachments to Microsoft Fabric Lakehouse10/3/2023 6:58:47 AM. This video demonstrated how to Automate Reading of MSExchange Email Attachments to Microsoft Fabric Lakehouse
  • Generate QR Code And Save Into The Database9/25/2023 11:38:23 AM. This Article show you how to create the QR code Dynamically and save it into the database
  • Task Parallel Library 101 Using C#9/25/2023 5:15:32 AM. Task Parallel Library (TPL) provides a level of abstraction to help us to be more effective as developers/programmers when it comes to parallelism. Knowing at least the basics are beneficial. In that
  • The Race Condition in Thread Synchronization9/24/2023 7:39:37 AM. In my Last Article “Thread synchronization in Java” we have discussed the concept of monitor. A monitor can be compared to a small box that can only carry one thread at once.