Related resources for Read
  • Read, Combine and Analyse ADLS Gen2 CSV files using Azure Synapse Spark SQL6/28/2024 7:30:27 AM. This video shows how to use Azure Synapse Analytics to read, combine, and analyze multiple CSV files residents in ADLS Gen2 using Spark SQL.
  • Understanding Threads and Multithreading in Java6/27/2024 10:58:39 AM. This article explains the concepts of threads and multithreading in Java, highlighting their benefits, lifecycle, and examples, along with the advantages and disadvantages of using multithreading in p
  • Concurrency and Parallelism in C#6/24/2024 11:45:43 AM. This article introduces concurrency and parallelism in C#, covering key concepts, benefits, and practical examples. Learn how to use async/await for asynchronous programming and the Parallel class for
  • Synchronizing Threads with AutoResetEvent in C# .NET6/23/2024 3:47:19 PM. In multithreaded C# applications, synchronizing thread execution is crucial to avoid race conditions and ensure controlled access to shared resources. The AutoResetEvent class helps manage this by act
  • Learn CRUD Operations in SQL Server with Real-World Examples6/21/2024 7:09:54 AM. CRUD represents the four basic operations: Create, Read, Update, and Delete, essential for managing persistent data in SQL Server. The Create operation involves adding new records to a table using the
  • Microsoft Reading Coach(Preview): Revolutionizing Rading Practice6/21/2024 5:37:03 AM. Discover Microsoft Reading Coach (Preview), a groundbreaking tool revolutionizing reading practice. Using AI and interactive learning tools, it transforms educational experiences by enhancing reading
  • Using C# and OpenXML to Read Large Excel Files6/18/2024 4:20:20 AM. Learn how to efficiently read large Excel files using C# and OpenXML in this comprehensive guide. Explore techniques to handle big data within Excel, leveraging the power of OpenXML SDK for performanc
  • Enhancing Reading Comprehension with Azure AI Immersive Reader6/17/2024 4:48:47 AM. In today's digital age, reading and comprehension skills are essential for success in both personal and professional realms. However, individuals of all ages and abilities often face challenges in
  • Performance Optimization in ASP.NET MVC Applications6/15/2024 9:07:01 AM. Performance optimization in ASP.NET MVC involves techniques like efficient data access, using Entity Framework wisely, implementing caching, using async/await for non-blocking operations, minimizing V
  • StreamReader And StreamWriter Classes In C#6/14/2024 10:42:15 AM. Learn about StreamReader and StreamWriter classes in C#. These classes are essential for reading from and writing to files efficiently. Understand their usage for file handling tasks, including readin
  • String Replacement With Named String Placeholders6/14/2024 10:38:51 AM. The anonymous nature of placeholders in the String.Format method can make it confusing. Find out how to use named string placeholders in your code.
  • Read CSV File In Angular 76/11/2024 12:39:09 PM. Learn to read and upload CSV files dynamically in Angular 7 without external libraries. Utilize FileReader API for parsing and validate CSV files, enhancing your app's data handling capabilities.
  • Creating An Optical Character Reader Using Angular And Azure Computer Vision6/11/2024 12:30:02 PM. Learn to build an Optical Character Recognition (OCR) application using Angular and Azure Computer Vision Cognitive Services. Extract printed text from images, detect language, and analyze content. G
  • Parallel Programming Using TPL in .NET6/7/2024 10:21:43 AM. With today's computers, we have multiple cores that must be equipped to design and develop applications that can utilize these resources. We must develop programs that can run our functions in par
  • Multithreading in C#6/6/2024 11:32:01 AM. In this article, we will learn Multithreading is a parallel way of execution where the application is broken into parts so that it can have more than one execution path at the same time.
  • Read Data From Azure Cosmos DB Using Power Automate6/6/2024 11:30:10 AM. In this article you will learn how to read data from Azure Cosmos DB using Power Automate.
  • Linq To Excel In Action6/5/2024 5:34:51 AM. Explore using LinqToExcel library in C# to query data from Excel spreadsheets effortlessly. Learn step-by-step creation of a console application, installation of LinqToExcel packages, and querying Exc
  • Fetch Data From Oracle Database Using C#6/5/2024 5:32:26 AM. his code demonstrates fetching data from an Oracle database using C# in ASP.NET. It connects to the database, executes a query to retrieve student data (name and roll number), and displays the results
  • The One Behind Concurrency in C#6/4/2024 12:19:25 PM. The Thread Pool in C# simplifies concurrency by managing threads for you. Unlike creating and managing threads yourself, the Thread Pool offers a pool of reusable threads, improving performance and re
  • Create Immutable Type In C#6/4/2024 9:52:32 AM. A public constructor that accepts initialization data is required so that the client can pass-in minimum state for the type to be valid. Private constructor, on the other hand, is used by methods to c
  • Understanding the document.ready Method in jQuery6/4/2024 7:19:06 AM. The document.ready method in jQuery ensures your code runs only after the DOM is fully loaded. This method simplifies event binding, DOM manipulation, and enhances cross-browser compatibility. Learn h
  • Common Table Expressions (CTE) Example In SQL SERVER5/31/2024 10:09:28 AM. A common table expression i.e CTE which is used to the specific temporary result set by using SELECT, INSERT, UPDATE, or DELETE statement. So the user can do further operations on it. When the user us
  • Inserting & Retrieving Images from SQL Server Database without using Stored Procedures5/31/2024 10:06:56 AM. Learn how to manage images in SQL Server directly from your C# application. Utilize ADO.NET for seamless image insertion and retrieval without stored procedures. Streamline database operations efficie
  • Read XML in C#5/31/2024 10:03:18 AM. Learn to parse and manipulate XML data in C# effortlessly. Utilize XML readers, XPath, or LINQ to XML for efficient XML processing. Handle XML documents, elements, attributes, and namespaces seamlessl
  • Reading and Manipulating an Xml file Using C#.Net (Including Images)5/31/2024 10:01:39 AM. Develop a Windows application to read an XML file and perform insert, search, update, and delete operations on student records. The form includes a DataGridView, PictureBox, OpenFileDialogs, Labels, T
  • Introduction to ADO.Net5/30/2024 12:10:13 PM. Explore ADO.NET, a vital component of the .NET Framework for seamless database connectivity. Utilize connection objects, commands, data readers, datasets, and adapters to interact with databases effic
  • What Is Common Table Expression (CTE) In SQL Server5/30/2024 10:18:42 AM. A Common Table Expression (CTE) in SQL Server, defined using the WITH clause, is a temporary result set that simplifies complex queries by improving readability and maintainability. CTEs support recur
  • Auto Property Initializer: A New Feature of C# 6.05/29/2024 8:48:15 AM. Auto Property Initializer, a feature in C# 6.0, simplifies property initialization by allowing default values to be assigned directly within property declarations. This enhances code readability and r
  • Understanding Common Table Expressions (CTEs) in SQL5/29/2024 8:47:55 AM. Explore the history, evolution, and application of CTEs in SQL, their syntax, advantages, and drawbacks. Learn how CTEs simplify complex queries, improve readability, and support recursion. Discover r
  • Understanding Threads and Processes: A Guide to Multiprocessing5/28/2024 12:03:34 PM. Multiprocessing revolutionizes computing by allowing CPUs to handle multiple tasks concurrently. Explore process-based and thread-based multiprocessing, their characteristics, key differences, and pra
  • Const, ReadOnly and Static Keywords in C#5/24/2024 9:36:40 AM. Explore the differences between const, readonly, and static keywords in C#. This guide covers their unique functionalities, use cases, and best practices in C# programming. Learn how to effectively us
  • Learn Object Oriented Programming Using C#: Part 35/24/2024 8:56:44 AM. Part 3 of our tutorial series delves deeper into Object Oriented Programming with C#. Explore advanced concepts like inheritance, polymorphism, and encapsulation. Master class hierarchies, method over
  • A Different Perspective of Stack Memory in .NET5/23/2024 6:21:46 AM. A Different Perspective of Stack Memory in .NET" explores the intricacies of stack memory management within the .NET framework. It delves into the differences between stack and heap, the role of
  • Working with Concurrent Hash Map in Java5/22/2024 4:21:55 AM. ConcurrentHashMap in Java is a thread-safe Map implementation that allows concurrent access and modification by multiple threads without external synchronization, ideal for multi-threaded environments
  • C# HashTable5/21/2024 9:39:15 AM. C#'s HashTable is a data structure storing key-value pairs using a hash function for fast retrieval. It handles collisions via chaining, ensuring efficient insertion, deletion, and retrieval opera
  • Multi-Threading (2), Implementation Overview5/21/2024 4:06:43 AM. This article will discuss the multi-threading implementation in overview.
  • Dynamic Mapping Database result to Entity T5/20/2024 7:16:04 AM. This article provides logic for Mapping the SQL Result to C# Class. This code snippet demonstrates the dynamic mapping of SQL result columns to C# properties, converting SNAKE_CASE SQL column names to
  • Understanding Thread Synchronization in Concurrent Programming5/18/2024 6:43:01 AM. Thread synchronization in C# ensures safe, correct access to shared resources in concurrent programming, preventing race conditions, data corruption, deadlocks, and livelocks through various mechanism
  • Reflecting Data In .NET Classes - Part IV - From Database Table5/17/2024 10:36:57 AM. In this segment of "Reflecting Data In .NET Classes," Part IV focuses on generating .NET classes from database tables. Utilizing reflection, it maps database schema to object-oriented struct
  • Implicitly Typed Local Variable In .NET5/16/2024 9:30:48 AM. Implicitly Typed Local Variables in .NET allow declaration without specifying the variable's data type explicitly, enhancing code readability and reducing verbosity, improving developer productivi
  • Azure Data Explorer - Reading JSON Data Using Kusto5/16/2024 9:29:44 AM. Azure Data Explorer empowers efficient querying of JSON data through Kusto Query Language (KQL). Explore, analyze, and visualize structured or unstructured data with ease, leveraging powerful data ing
  • Under The Hood Of Thread Synchronization With LOCK5/15/2024 7:08:04 AM. The LOCK keyword is the most popular mutual-exclusive thread synchronization construct. The LOCK statement in C# is crucial for thread synchronization, preventing race conditions by restricting access
  • Clean Code Practices: Elevating Code Quality in C# Development5/15/2024 4:07:20 AM. This article delves into the significance of clean code practices in software development, tracing its history, emphasizing its necessity, and exploring its evolution. It includes practical C# code de
  • Monitor Class as Hybrid Synchronization Construct in .NET5/14/2024 6:27:49 AM. The Monitor class is hybrid thread synchronization construct. So, it provides a mutual-exclusive lock supporting spinning, thread ownership, and recursion.
  • All About BI Tools and Types to Make You Ready for Next Action5/13/2024 11:13:42 AM. This article is for you if you are getting your steps in BI Tech Stack. Here in this article, you will learn the basics of BI with its types.
  • Concepts of Threads, Thread Pools, and Tasks in C#5/13/2024 10:33:44 AM. Threads are the smallest units of execution, enabling concurrency but requiring manual management. Thread pools efficiently manage threads for short-lived tasks, while tasks abstract asynchronous oper
  • Introduction to Monitor Class in C#5/13/2024 10:26:11 AM. The Monitor class is built on dotNET’s FCL (Framework Class Library) infrastructure. In general, it provides to achieve thread safety.
  • 😇How the Compiler Reads Your Code?5/13/2024 8:12:24 AM. C# compilation, from syntactic and semantic analysis to optimization techniques. Learn how the Common Language Runtime (CLR) executes compiled code and discover the role of the Just-In-Time (JIT) comp
  • Deep Dive Into Race Condition Problem in .NET5/12/2024 1:23:55 PM. In a multithreading environment, there are many benefits and challenges to consider. In our case, we will focus on one of the most popular challenges the Race Condition Problem.
  • Deciding the Right Data Reading Architecture in .NET5/11/2024 2:26:25 PM. In the dynamic realm of .NET development, choosing the right data reading architecture is paramount for application performance, scalability, and maintainability. Let's delve into practical exampl
  • Understanding of ConcurrentDictionary in .NET5/9/2024 3:59:02 AM. Everything is becoming more concurrent, so usually server-based(or multithreaded environments) applications are faced with non-thread-safe problems such as race condition.
  • Exploring the Fundamentals of Concurrent Programming in .NET5/6/2024 8:49:30 AM. Concurrency is vital for efficient applications. .NET offers Thread, Multithreading, Task, Async & Await, Threadpool, Lock, and Deadlock tools. Understanding them enhances .NET development for sca
  • Maximizing Efficiency with Thread Pooling in C# Programming5/3/2024 5:34:22 AM. This article explores thread pooling in C#, focusing on its efficiency benefits in concurrent programming. It discusses its importance, implementation using C#, and best practices for optimal performa
  • Create Or Update Excel Sheet From Azure Web Job5/2/2024 9:55:28 AM. In this article, I would like to share the steps and code to create/update an Excel from an Azure web job. Using Microsoft.Interop.Excel, we can create and update the Excel sheet but in Azure web job,
  • Thread- Local Storage of Data in .NET5/1/2024 11:07:55 AM. Suppose you're writing a multi-threaded application and you want each thread to have its own copy of some data. You also want this data to persist throughout the lifetime of the thread.
  • Parallel.For Loop in .NET 45/1/2024 11:06:50 AM. Learn efficient parallel programming with the Parallel.For loop in .NET 4. Harness the Task Parallel Library (TPL) to execute iterations concurrently, optimizing performance through multithreading and
  • 6 Ways of Doing Locking in .NET (Pessimistic and Optimistic)4/30/2024 9:44:21 AM. This article talks about 6 ways of doing locking in .NET. It starts with concurrency problems and then discusses about 3 ways of doing optimistic locking.
  • Opening PDFs in Adobe Reader from SharePoint Document Library4/29/2024 11:45:02 AM. Learn how to configure SharePoint 2013 to open PDF files directly in Adobe Reader, edit them, and save them back to the document library. Follow steps including settings adjustment in central admin, r
  • Import Data to Excel SpreadSheet in .NET4/29/2024 9:56:16 AM. Learn how to import data into Excel spreadsheets using C# and . NET. Explore Excel interop, data manipulation, and CSV handling. Automate data import/export tasks, manage connections, and format data
  • Difference Between ReadOnly and Constant in .NET C#4/26/2024 12:12:45 PM. In C#, `readonly` and `const` keywords declare values with key differences. `const` is compile-time, immutable, and static, while `readonly` is runtime, set in constructors, and can vary. Choose based
  • How To Read Tabular Data From CSV Files In R4/26/2024 11:55:39 AM. Learn how to import and manage CSV data in R. Discover the read.csv function for reading tabular data with and without headers. Explore the structure of the imported data frame. Additionally, understa
  • App.Config AutoReader4/26/2024 9:05:23 AM. In our day to day development, it is a rare case where we don’t need to read a configuration file. There are many techniques for the treatment of such static classes, singleton classes, etc and it is
  • Clean Code - Single Level Of Abstraction4/25/2024 8:50:29 AM. Discover the essence of clean code with Single Level of Abstraction. Elevate readability and maintainability by adhering to this principle, ensuring each function or method performs a single task at a
  • How To Use XLSX Package To Read Data In R4/25/2024 8:18:36 AM. The XLSX package in R facilitates reading data from Excel files. It offers functions to import Excel data into R as data frames, providing flexibility in handling spreadsheet data for analysis, manipu
  • 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
  • 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