Related resources for NET Framework
  • Real-World ADO.NET Use Cases: Case Studies and Best Practices7/24/2024 4:41:43 AM. ADO.NET remains a robust data access technology within the .NET framework, even as newer technologies emerge. Its ability to manage data interactions efficiently makes it suitable for a variety of rea
  • Getting Started with ADO.NET7/22/2024 8:14:00 AM. ADO.NET (ActiveX Data Objects . NET) is a set of classes in the .NET Framework that provides access to data sources such as SQL Server, Oracle, and other databases. It is a part of the larger .NET eco
  • Advanced Topics in .NET Standard7/17/2024 5:48:43 AM. .NET Standard is a formal specification of .NET APIs that are intended to be available on all .NET implementations. It enables code sharing and reuse across different .NET platforms, including .NET Co
  • Porting Libraries to .NET Standard7/17/2024 12:30:37 AM. Porting libraries to .NET Standard can be a highly beneficial task, ensuring your code is compatible with multiple .NET implementations such as .NET Framework, .NET Core, and Xamarin.
  • Setting Up a .NET Standard Project7/17/2024 12:19:04 AM. .NET Standard is a formal specification of .NET APIs that are intended to be available on all .NET implementations. It serves as a base class library that can be used across different .NET platforms,
  • Hangfire: Simplifying Background Job Processing7/16/2024 4:29:26 AM. Discover how Hangfire simplifies background job processing in ASP.NET applications. Learn about its robust features for task scheduling, job management, and asynchronous job execution.
  • Using Find Instead of FirstOrDefault with Collections in C# .NET7/15/2024 8:10:04 AM. When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Fin
  • .NET Frameworks Versions & it's Evolution7/4/2024 5:45:52 AM. Explore the evolution of .NET Frameworks, tracing from its inception to modern iterations like .NET Core, .NET 5, and .NET 6. Discover how Microsoft's development tools and runtime environments ha
  • Explain Unit Testing in .NET API7/3/2024 6:12:09 AM. Explore effective strategies for unit testing in .NET API development. Learn essential techniques like test-driven development (TDD), utilizing NUnit or xUnit frameworks, mocking dependencies, and ens
  • Discards in Tuple and Object Deconstruction in C# .NET7/1/2024 6:52:04 AM. In C#, deconstruction allows you to extract values from tuples and objects into separate variables. It's a powerful feature that enhances readability and simplifies code when working with complex
  • Understanding ASP.NET - Part One - Owin And Katana6/26/2024 10:53:14 AM. Dive into the fundamentals of ASP.NET with a focus on Owin and Katana in this introductory series. Explore the architecture, middleware concepts, and how these technologies streamline web development
  • Behind the Scenes of OWIN (Open Web Interface for .NET)6/26/2024 6:47:39 AM. OWIN is the acronym of Open Web Interface for .NET and it is a specification that provides to decouple web servers with web applications. This specification is an also open standard for all .NET ecosy
  • Implementing MongoDB with .NET6/26/2024 6:35:29 AM. Learn essential techniques for data persistence, leveraging MongoDB's document-oriented structure, implementing CRUD operations with C#, and optimizing performance using the MongoDB .NET driver.
  • Overview of .NET 9 Preview: New Features and Updates6/19/2024 5:48:12 AM. Explore the .NET 9 preview with an in-depth overview of its new features and updates. Discover the latest enhancements, performance improvements, and innovations that this release brings to developers
  • LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing6/17/2024 5:09:08 AM. LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, whi
  • Choosing ASP.Net Web API or WCF6/12/2024 7:33:46 AM. Understand the transition from WCF to ASP.NET Web API, emphasizing HTTP-centric design, simplicity, and coexistence. ASP.NET Web API targets HTTP services, supporting diverse client bases including ri
  • Using StatusStrip In Windows Forms6/11/2024 12:14:07 PM. Learn how to enhance user experience in Windows Forms applications by effectively utilizing StatusStrip. StatusStrip provides visual feedback and status updates, integrating various controls like Tool
  • Frozen Collections in .NET 86/10/2024 7:00:56 AM. Frozen Collections in .NET 8" explores the introduction of frozen (immutable) collections in the latest .NET framework. These collections offer performance optimizations and enhanced memory manag
  • Create An ASP.NET MVC CRUD Application With Entity Framework Using AJAX Request And jQuery6/6/2024 7:49:20 AM. Develop an ASP.NET MVC CRUD app using Entity Framework for data management. Employ AJAX requests and jQuery for seamless, asynchronous interaction, enhancing user experience and responsiveness.
  • Difference between String & StringBuilder in .NET C#6/5/2024 5:21:33 AM. In .NET C#, String is immutable, meaning any modification creates a new instance, which can be inefficient for frequent changes. StringBuilder is mutable, designed for dynamic string manipulation with
  • JIT (Just-In-Time) Compiler6/3/2024 10:09:04 AM. .NET languages utilize CLR, enabling execution through JIT compiler, converting MSIL to CPU-specific native code during runtime. This JIT process ensures optimal performance, compiling IL to native co
  • Difference Between "is" And "as" Operator in C#5/31/2024 4:38:54 AM. The is and as operators in C# have distinct behaviors and serve different purposes. The is operator is used for type checking, while the as operator is used for casting.
  • 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
  • Using Static Class Statements: A New Feature of C# 6.05/29/2024 10:31:05 AM. C# 6.0 introduces Static Class Statements, simplifying code organization and enhancing readability by allowing static members to be imported directly, improving code maintenance and reducing verbosity
  • Exception Handling Mechanism In .NET 5/28/2024 11:22:10 AM. In thiThe "Exception Handling Mechanism in .NET" refers to the robust system for managing errors and exceptions in .NET applications. It encompasses the use of try-catch blocks, finally bloc
  • .Net Framework Vs .Net Core Vs .Net Standard5/28/2024 7:26:59 AM. Explore the differences between .NET Framework, .NET Standard, and .NET Core. Learn about their histories, architectures, and compatibility. Discover when to use each framework and their key features
  • .NET Framework Vs .NET Core Vs .NET Standard5/28/2024 7:25:47 AM. Explore the differences between .NET Framework, .NET Core, and .NET Standard. .NET Framework is Windows-based, less effective. .NET Core is open-source, cross-platform, for high performance and micro-
  • Managing Data With ViewModel In ASP.NET MVC5/21/2024 9:36:47 AM. This article will tell you almost everything about ViewModel in ASP.NET MVC. I am writing this article to tell you the basic to advance foremost concepts about ways to manage the data and organize the
  • A Dictionary Class Which Permits Duplicate Keys5/20/2024 11:57:02 AM. A dictionary class permitting duplicate keys accommodates multiple values for the same key. It employs strategies like chaining or allowing multiple entries with the same key, enhancing flexibility in
  • A Simple Step to Entity Framework: Code First Approach5/17/2024 11:02:24 AM. Learn the foundational steps of Entity Framework's Code First approach in this straightforward guide. Dive into database development with ease using C# and Visual Studio, mastering Object-Relation
  • 6 Important .NET Concepts5/17/2024 10:37:22 AM. This article will explain 6 important concepts, Stack, heap, value, ref, boxing, and unboxing. Explore the essence of .NET through six pivotal concepts.
  • .NET Standard / .NET Standard Library5/16/2024 8:35:39 AM. .NET Standard is a set of APIs that define the base class libraries available across different .NET implementations, ensuring compatibility and portability between platforms like .NET Framework, .NET
  • 3 Ways of Doing Optimistic Locking in .NET5/16/2024 8:31:32 AM. In this article we will touch base 3 ways of doing optimistic locking i.e. Using ADO.NET dataset, SQL Server Timestamp check and old / new value check.
  • MSIL Programming: Part 15/16/2024 5:52:09 AM. Learn MSIL programming fundamentals in this comprehensive series. Explore Microsoft Intermediate Language (MSIL) concepts, .NET assembly structure, IL instructions, and .NET runtime.
  • Introduction To ASP.Net SignalR Self Hosting5/16/2024 5:43:17 AM. Explore ASP.NET SignalR self-hosting to enable real-time communication in your applications. Learn about setting up a self-hosted SignalR server using .NET Framework, facilitating WebSocket-based inte
  • Entity Framework (0), Overview5/16/2024 5:36:28 AM. In this article, you will learn about entity framework (0), Overview, concept, and approaches.
  • Entity Framework (1), With .Net MVC, Code-First5/16/2024 5:33:58 AM. Setup Entity Framework with .Net MVC in Visual Studio 2019, with Code-First approach
  • Web Service Class and Directive in ASP.NET5/15/2024 1:46:08 PM. A look at the options for configuring a Web Service using the Web Service class of the System.Web.Services namespace and directives that are available with ASP.NET.
  • Object Detection using Azure Cognitive Service and .NET5/15/2024 11:11:20 AM. Learn how to implement object detection using Azure Cognitive Services and .NET. Harness the power of computer vision and machine learning to analyze images, identify objects, and integrate with custo
  • Basics of Ngen.exe (Native Image Generator) in .Net5/13/2024 11:49:53 AM. I would like to share the basics of Ngen.exe in .Net, collected from various web resources. I will first try to explain the problem then the solution, Ngen.exe, in simple words.
  • Exploring Data Structures: The Stack in .NET C#5/13/2024 11:30:59 AM. Data structures are the fundamental building blocks of software engineering. They enable efficient storage, retrieval, and manipulation of data, serving as the backbone of countless algorithms and app
  • Easy Way To Become An F# Programmer For C# Developers5/13/2024 11:21:10 AM. Discover the seamless transition from C# to F# with this guide. Learn the fundamentals of F# programming tailored specifically for C# developers. Explore functional programming, type inference, and .N
  • Dictionary vs HashTable in .NET C#5/8/2024 10:51:33 AM. Explore the differences between Dictionary and HashTable in .NET C#. Learn about efficient key-value storage, hashing techniques, and performance contrasts. Discover when to use Dictionary<TKey, TV
  • Introduction To .NET Platform5/8/2024 10:10:07 AM. In this article, you will discover the fundamentals of the .NET platform, including the C# programming language, Common Language Runtime (CLR), and Base Class Library (BCL).
  • Hash Table in .NET: Syntax, Usage, Methods, and Example5/7/2024 10:26:55 AM. A group of key/value pairs arranged according to the key's hash code is represented by the Hashtable class. This class is contained in the namespace System. Collections. To execute different kinds
  • Introduction To OWIN and KATANA in Visual Studio 2013 Preview5/6/2024 11:34:54 AM. Discover OWIN and Katana in Visual Studio 2013 Preview. Revolutionize web development with middleware, modular architecture, and self-hosting capabilities, enhancing scalability and cross-platform com
  • Understanding Garbage Collection in .NET Core5/5/2024 8:41:16 AM. Garbage collection (GC) is a fundamental aspect of memory management in modern programming languages like C#. In the context of .NET Core, the GC system plays a crucial role in automatically reclaimin
  • .Net Architecture And .Net Framework Basics5/5/2024 8:25:53 AM. .NET architecture encompasses the Common Language Runtime (CLR) and Common Type System (CTS), executing Intermediate Language (IL) through Just-In-Time (JIT) compilation.
  • Create ASMX Service For SharePoint5/3/2024 9:18:10 AM. Develop ASMX services for SharePoint using .NET Framework and Visual Studio. Leverage SharePoint's web services to enable SOAP-based communication, accessing SharePoint data and functionality seam
  • To Find Installed Version of .Net Framework Using CLR Version Tool5/1/2024 11:14:47 AM. Learn about Clrver.exe utility to identify .NET Framework versions. Use MSCorEE.dll presence in system directories. Visual Studio command prompt access. View installed .NET versions and CLR versions
  • Introduction to Task-Based Asynchronous Pattern in C# 4.5: Part I5/1/2024 11:07:16 AM. Discover the fundamentals of Task-Based Asynchronous Pattern in C# 4.5: Part I. Explore asynchronous programming, concurrency, and the await keyword for efficient parallel computing in .NET Framework
  • 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
  • Asynchronous Connection in .NET Framework 4.55/1/2024 11:04:28 AM. Learn about leveraging asynchronous connections in .NET Framework 4.5 for efficient, non-blocking operations. Explore async/await patterns, Task Parallel Library (TPL), AsyncCallback delegate, and asy
  • Preparing .NET Interview - Part 1 (Framework)4/29/2024 11:56:13 AM. Preparing for a .NET interview (Part 1 - Framework) involves understanding key concepts like CLR, BCL, assemblies, and memory management. Familiarize with C#, garbage collection, reflection, and .NET
  • Enterprise Library New Version 64/29/2024 10:15:21 AM. Enterprise Library Version 6 is a Microsoft .NET Framework library offering application blocks for logging, caching, data access, security, and more. It provides configurable components for common ent
  • 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
  • .NET Framework At A Glance4/25/2024 11:27:49 AM. .NET Framework At A Glance. In this post let's see what is the .NET Framework, benefits of the .NET Platform, introducing CLR, CTS, and CLS, Framework Class Library(FCL), Managed vs. Unmanaged Cod
  • Are You Fresher & Looking For Way To Start With Microsoft .NET4/25/2024 8:57:05 AM. Get started with .NET Framework and its technologies for beginners. Learn C# with Visual Studio, explore web development with ASP.NET MVC and Entity Framework, master CRUD operations with SQL Server.
  • Impove App Launch Performance With MultiCore JIT in .NET Framework4/25/2024 8:48:50 AM. Learn how to enhance the launch performance of your .NET Framework 4.5 applications by leveraging MultiCore JIT (Just-In-Time) compilation. Discover techniques to optimize code compilation, reduce sta
  • Create Word Reports Without Microsoft Word Using Spire.doc4/25/2024 8:09:25 AM. Spire.doc provides a robust solution for generating reports as Word documents without relying on Microsoft Word. Utilizing the .NET framework and C# programming, it offers efficient document processin
  • Learn about Components Of .NET4/25/2024 8:00:10 AM. The .NET ecosystem comprises various components facilitating software development across platforms. Key elements include the .NET Framework with its Common Language Runtime (CLR) and Base Class Librar
  • .NET Serialization4/24/2024 1:26:20 PM. Serialization in .NET facilitates object state persistence, enabling transmission across networks or storage in various formats like binary and XML. It ensures data integrity, exemplified by the US Vi
  • Assembly in .NET 2.04/24/2024 1:22:55 PM. In .NET 2.0, assemblies play a crucial role, containing code and metadata for applications. They support versioning, security, and deployment, with features like strong naming and the Global Assembly
  • ASP.Net 4.0 ClientId4/23/2024 11:36:43 AM. In ASP.Net 4.0, ClientId is a crucial feature enabling the unique identification of HTML elements rendered by server controls. It facilitates client-side scripting by providing a predictable naming co
  • Group Box and Picture Box in Windows Forms4/23/2024 11:07:40 AM. Combine Group Box & Picture Box in Windows Forms for organized UI & image display. Utilize Group Box for visual grouping & Picture Box for image rendering, enhancing user experience in C#
  • .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
  • Getting Assembly Metadata at Runtime4/23/2024 8:22:02 AM. Retrieving assembly metadata at runtime in .NET involves using reflection, and accessing attributes like AssemblyVersion or custom ones. This dynamic analysis enables discovering types, members, and o
  • Managed Extensibility Framework (MEF)4/23/2024 7:29:23 AM. MEF is a component of .NET framework 4.0, to create lightweight, extensible applications. It avoids hard dependencies and lets the application developer discover and use extensions without any configu
  • Preview of Dynamic Data and Entity Data For EF 64/23/2024 7:23:32 AM. The preview of Dynamic Data and Entity Data for EF 6 introduces efficient database connectivity and modeling within the .NET Framework. It enables seamless integration of data with code through Entity
  • Introduction To Serialization In .NET4/23/2024 7:22:38 AM. In this article, we will Learn about various serialization formats like binary, XML, and JSON, along with serialization attributes and best practices for efficient data handling and persistence within
  • Delegates in .NET4/22/2024 8:57:01 AM. In this article, we will learn Delegates in .NET provide a powerful mechanism for defining and encapsulating methods, enabling flexible event handling and callback functionality.
  • Indepths of Global Assembly Cache4/22/2024 8:54:29 AM. In this article, we will Explore the depths of the Global Assembly Cache (GAC) in .NET Framework. Learn about assembly management, versioning, security, and deployment.
  • .NET Reverse Engineering: Part 24/19/2024 10:37:50 AM. This article describes details of the .NET CLR and ILASM coding, including a detailed analysis of each opcode instruction how to integrate an IL code into an existing high-level C# written code, and h
  • Deploying WPF Apps with Click-Once in Visual C# Express4/19/2024 10:24:11 AM. Deploy WPF apps seamlessly with ClickOnce in Microsoft Visual C# 2010 Express. Simplify distribution, enable automatic updates, and ensure easy installation, all within the .NET environment for effici
  • A Journey from ASP.NET Framework to ASP.NET Core4/18/2024 7:44:33 AM. Explore the journey of .NET web development from ASP.NET Framework to ASP.NET Core, encompassing technologies like Windows Forms, WPF, and Web Forms. Witness the transition to structured MVC architec
  • How To Create A Scheduled Webjob For SharePoint 2013 Online Using Classic Azure Portal4/17/2024 9:38:54 AM. Learn to set up scheduled WebJobs for SharePoint 2013 Online using the Azure Classic Portal. Utilize Azure WebJobs SDK, .NET, and TimerTrigger for automated tasks. Deploy via Visual Studio, manage wit
  • Single Page Applications with AngularJS in .NET: Part 24/16/2024 6:33:03 AM. Part 2 of Single Page Applications with AngularJS in .NET delves deeper into building dynamic web experiences. Explore advanced AngularJS concepts like routing, components, and data binding, integrati
  • Consuming Web Service In a Console Application4/11/2024 10:56:50 AM. Integrate web services seamlessly into console applications using .NET frameworks like .NET Core or .NET Framework. Utilize HttpClient or service references to communicate with SOAP or RESTful APIs, e
  • .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
  • Hiding the Version Information of .Net Framework Due to Security Issue4/3/2024 9:40:26 AM. Learn how to address the &quot;medium-level&quot; security issue of information disclosure in .NET Framework. Follow steps to create a sample website, identify the problem of version information disc
  • 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
  • Overview Of ASP.NET MVC3/29/2024 6:32:20 AM. In this article, you will learn about MVC patterns and ASP.NET MVC. MVC is an architectural pattern to develop enterprise applications.
  • History and Evolution of Visual Studio and Supported .NET Versions3/22/2024 7:18:14 AM. This article gives a Brief overview of Visual Studio&#39;s evolution and its significance in software development. Description of each major version of Visual Studio from 1997 to 2022, highlighting ke
  • Create Your First Bot Using Visual Studio 2017 - Step By Step Guide3/20/2024 11:48:20 AM. In this article we will be Seeing how fast companies are adopting Bots, it is really the best time for you to start learning the Bot framework and start adopting Bots for your business.
  • First Look At ASP.NET Core 2.1 Preview One - Convert Existing .NET Core Application To .NET Core 2.13/19/2024 6:13:49 AM. Finally, the .NET Core 2.1 preview is out for people to try. Two days ago, the .NET team announced the first preview of .NET Core 2.1. Let us see some of the highlights for this release.
  • What is difference between .NET and .NET Framework?3/18/2024 5:59:32 AM. The &quot;.NET Framework&quot; and &quot;.NET&quot; (formerly known as &quot;.NET Core&quot;) are two different implementations of the .NET platform, each serving different purposes and targeting diff
  • Difference Between .NET Framework, .NET Core, and .NET Standard3/11/2024 10:18:50 AM. This article, delves into the distinctions between .NET Framework, .NET Core, and .NET Standard. Exploring their histories, open-source nature, cross-platform capabilities, and performance aspects, th
  • User Authentication with Forms Authentication in ASP.NET MVC3/10/2024 7:40:33 AM. Forms Authentication is a widely-used mechanism in ASP.NET for managing user authentication within web applications. It allows developers to authenticate users based on credentials stored in a databas
  • Install .Net Framework 3.5 Offline in Windows 82/26/2024 9:24:53 AM. This article provides instructions on how to install .NET Framework 3.5 in Windows 8 offline. In Windows 8, when attempting to install an old application, users may encounter an error message indicati
  • Camelcase Serialization in .Net 92/19/2024 6:27:06 AM. In .NET 9, developers have been granted a powerful tool to enhance data serialization: CamelCase Serialization. This feature facilitates smoother interoperability with systems and frameworks that expe
  • C# Versions2/9/2024 6:04:09 AM. This article provides a comprehensive overview of the major releases of the C# programming language, detailing their dates of release, associated .NET Framework versions, Visual Studio editions, and s
  • ADODB Services in .NET Applications Using C#2/6/2024 8:38:12 AM. In this insightful guide, &quot;Modernizing ADO Applications in C# with ADO.NET,&quot; discover the transition from traditional ADODB-based systems to the revolutionary world of ADO.NET within the .NE
  • Building a URL Shortener with .NET2/1/2024 7:24:19 AM. Create a powerful URL shortener using the versatile .NET framework, specifically ASP.NET Core. This guide walks you through setting up a database, implementing URL shortening logic, and configuring co
  • TaskCompletionSource and CancellationTokenSource in .NET1/23/2024 6:19:00 AM. Explore the functionalities and use cases of TaskCompletionSource and CancellationTokenSource in the .NET framework for managing asynchronous operations, providing flexibility, and control, and buildi
  • Learn How to Use C# 12 in .NET Framework 4.7.2/4.8 Solutions1/16/2024 9:01:09 AM. Unlock the capabilities of C# 12 in .NET Framework 4.7.2 to 4.8.1 with Visual Studio 2022. Learn the upgrade process, and explore features like literals, nullable types, records, and array expressions
  • .NET: Framework, Core and Standard12/28/2023 7:05:36 AM. Discuss the difference between .NET Framework, Core, and Standard Edition. In this article, we will learn about .NET Framework, .NET Core, and .NET Standard in this comprehensive guide. Delve into th
  • Extension Method in C#12/27/2023 9:01:42 AM. Extension Methods in .NET, a powerful feature introduced in .NET Framework 3.0. Learn how to seamlessly add or extend methods to existing types, enriching your coding experience. ??
  • Implementation Of The Redis Cache In The .NET Core API10/30/2023 5:15:38 AM. In this article, you will learn how to implement of the Redis Cache in the.NET Core API.
  • Evidence In C#10/25/2023 8:06:10 AM. IIn C#, Evidence is a class within the System.Security.Policy namespace. It is used in .NET Framework applications to represent the evidence that is used to establish the permissions granted to an ass
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download