TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Unmanaged
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Dipal Choksi (3)
Sam Hobbs (2)
Mohammad Elsheimy (2)
Bohdan Stupak (1)
George (1)
Mohammad Irshad (1)
Ajay Yadav (1)
Naimish Makwana (1)
Vulpes (1)
Keyur (1)
Srinath Pega (1)
Sabarish Natarajan (1)
Shweta Lodha (1)
Tanmay Sarkar (1)
Filip Bulovic (1)
C# Curator (1)
David Anderson (1)
Ramees (1)
Bhushan Gawale (1)
Rick Malek (1)
Tom Mohan (1)
Sushil Singh (1)
Abhishek Sur (1)
John Godel (1)
Mike Gold (1)
Vineet Kumar Saini (1)
Mahesh Chand (1)
jimteeuwen (1)
Related resources for Unmanaged
No resource found
Using Span<T> To Improve Performance Of C# Code
10/21/2024 10:13:00 AM.
To enhance application performance, reducing IO calls and utilizing stack allocation is crucial. Leveraging value types and the Span<T> structure in C# allows efficient memory management and imp
Garbage Collection (2), Manage UnManaged Code
6/17/2024 4:18:35 AM.
Discuss the garbage collection with unmanaged code: How to manage the unmanaged code in .NET, Dispose pattern
Garbage Collection - Dispose Vs Finalize And IDisposable Pattern
6/12/2024 6:51:19 AM.
Explore Finalize, Destructor, IDisposable pattern in C# for managing unmanaged resources. Learn about memory management, Garbage Collector behavior, and IDisposable interface. Implement IDisposable fo
Executing Assembly Code in C#
6/3/2024 10:10:02 AM.
Learn how to integrate hardcore assembly code into managed .NET code using a VC++ DLL as an intermediary, enabling faster execution and better control over hardware. This article illustrates invoking
Introduction to the IDisposable Pattern
1/2/2024 6:46:59 AM.
Article on the IDisposable pattern in C#, covering introduction, details, code examples, and best practices. This article will explore the IDisposable pattern, its significance, and how to implement i
Calling Unmanaged Functions Which Take A Variable Number Of Arguments From C#
10/23/2023 5:12:44 AM.
Many C# programmers are familiar with the Platform Invoke mechanism (using the DllImport attribute) for calling unmanaged functions from C#.
Managed vs. Unmanaged Code in .NET
10/16/2023 7:08:10 AM.
Managed code in .NET refers to programs written in high-level languages like C#, VB.NET, or F# that are compiled into Intermediate Language (IL) or Common Intermediate Language (CIL). This intermediat
Managed C++ Wrapper For Unmanaged Code
7/19/2023 5:46:59 AM.
This article shows how to create a C++ CLR Class Library wrapper for unmanaged code.
The Basics of Creating a Static Library Using Visual C++
5/26/2023 9:05:21 AM.
Explains the basics of creating a static library, with explanations, and how to use a static library.
Dynamics 365 Solution Export & Import as Unmanaged Using Azure DevOps Build Pipeline
9/4/2021 5:33:39 AM.
Dynamics 365 Solution Export & Import as Unmanaged Using Azure DevOps Build Pipeline
Block Access To Microsoft 365 Resources From Unmanaged Windows Device
7/23/2021 10:28:05 AM.
This article describes the creation of Conditional Access policy to block access to Microsoft 365 resources from Unmanaged or Non-Compliant Windows devices Devices
Finalize in .NET
4/6/2021 11:00:11 AM.
We implement the Finalize method to release the unmanaged resources.
Unmanaged C++ Dll Call From Managed C# Application
2/14/2019 9:07:09 AM.
Here, you will see the steps for using a simple C++ DLL in a C# application.
Calling Managed Code From Unmanaged Code
2/14/2019 8:29:46 AM.
One significant task for developers (including myself) is doing some kind of automation of Microsoft Office. So, I will concentrate on the opposing side of the problem - how to use managed assembly fr
Invoking Unmanaged DLL Functions from Compact Framework for Pocket PC
12/4/2018 5:27:44 AM.
In this example we will use the Compact Framework to create a program containing a launch pad for the Pocket PC.
Invoking Unmanaged DLL Functions from Compact Framework for Pocket PC in VB.NET
12/4/2018 5:23:48 AM.
In this example we will use the Compact Framework to create a program containing a launch pad for the Pocket PC. Invoking Unmanaged DLL Functions from Compact Framework for Pocket PC in VB.NET.
Managed code and unmanaged code in .NET
10/24/2018 1:28:03 AM.
In this article I will try to explain you managed code and unmanaged code in .NET with help of diagram and its execution process.
Garbage Collector - Understanding IDisposable
2/23/2018 10:06:14 PM.
In this video I will do my best to help you fully understand the IDisposable interface, the basic dispose pattern, finalizers, and how your implementations of Dispose interact with the GC and garbage
Deploying A Virtual Machine Using Unmanaged Disk
10/7/2017 1:39:06 AM.
In the previous article, we deployed a Windows VM using the managed disk. In this article, we are going to see how we can deploy a VM using an unmanaged disk. For demo purpose, I am using a Linux VM i
Converting Azure VM Unmanaged Disks To Managed Disks
4/1/2017 12:55:06 PM.
In this article, we will see the details of how to convert Azure VMs with un-managed disks to managed disks.
Calling Managed COBOL From Unmanaged COBOL With Micro Focus Visual COBOL
2/13/2016 11:59:54 AM.
In this article you will learn about calling managed COBOL from un-managed COBOL with Micro Focus Visual COBOL.
Handle Unmanaged Resources
3/28/2015 4:45:57 PM.
This article explains how to handle unmanaged resources in a program.
Overview of Windows Presentation Foundation (WPF) Architecture
3/11/2015 8:50:48 PM.
This article provides an overview of the Windows Presentation Foundation (WPF) architecture.
Benefits of Using Dispose For .NET Objects
2/1/2014 1:36:24 PM.
This article explains the benefits of using Dispose for .NET objects.
How Can You Migrate your Existing Applications?
10/13/2012 4:41:50 AM.
When a new technology emerges, companies and developers begin to wait anxiously for answers to their questions.
Moving C Structures into .NET with Custom Marshaling
10/13/2012 2:02:06 AM.
Microsoft provides several attributes for marshaling C to C#. In our example we will take the case where we have hundreds of structures and only a few API calls, so we only need to generate the marshaled code for the structures.
.NET Interoperability at a Glance 3 - Unmanaged Code Interoperation
6/12/2012 1:04:42 AM.
This is the last article in this series, it talks about unmanaged code interoperation; that’s, interop between .NET code and other code from other technologies (like Windows API, native libraries, COM, ActiveX, etc.)Be prepared!
Unsafe Code in C#
12/7/2011 10:22:41 PM.
In this article you will see the use of the 'unsafe' keyword in C#.
Understanding Garbage Collection in the .NET Framework
8/10/2011 8:04:50 AM.
In this article we will explore the Garbage Collection feature in the .Net framework and the activities required in applications to manage resources complementing the Garbage Collector.
.NET Interoperability at a Glance 1 – Introduction
12/27/2010 12:33:04 AM.
In this article and the few following it, we’ll try to take a tour in Interoperability in .NET Framework.
GDI+: The Next-Generation Graphics Interface
10/8/2009 2:48:23 AM.
In this article I will give you introduction about GDI+.
Export Managed Code as Unmanaged
2/2/2006 11:45:09 PM.
The following Article explains in detail how to use any .NET Assembly from BlitzPlus/Blitz3D.