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 Unsafe
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (1)
Vinoth Xavier (1)
Jefferson S. Motta (1)
Rajesh VS (1)
Gregory Popek (1)
Ajay Yadav (1)
Roman Sakno (1)
Ria Sur (1)
Mobeen Rashid (1)
Ashok Karale (1)
Pankaj Kumar Choudhary (1)
Patrick Smacchia (1)
Vineet Kumar Saini (1)
Mohammad Elsheimy (1)
Related resources for Unsafe
No resource found
Optimizing Memory Management in C#
6/4/2024 7:23:27 AM.
In this article, we will learn Memory management and optimization are crucial aspects of C# development, especially for applications that demand high performance and efficient resource utilization.
C# HTTP Methods: Safe vs. Unsafe, GET vs. POST in .NET Core
3/26/2024 11:05:19 AM.
Dive into advanced topics like dependency injection, service configuration, and implementing retry policies and circuit breakers. Elevate your API integration game with this comprehensive guide to lev
VS 2022 Reveals System.Runtime.CompilerServices.Unsafe Vulnerability
11/15/2023 7:23:46 AM.
The recent version of Visual Studio 2022 revealed a vulnerability in ASP.NET WebForms.while updating Windows on Patch Tuesday and releasing the latest version of Visual Studio 17.8 and .NET 8 LTS, I u
Pointers In C#
6/6/2023 9:14:32 AM.
C# Pointer is a variable that holds memory address of another type. In this article, learn how to implement pointers in C#. Here you will learn how to define C# Pointers.
Writing unsafe code - pointers in C#
5/2/2022 9:46:08 AM.
In this article I will give a short description of one of the feature of C# which are pointers and so-called unsafe code. This subject is particularly close for C++ programmers. Moreover, it is a feat
Unsafe Coding: Pointers in .NET
2/9/2021 9:07:57 AM.
In this article you will learn one of the advanced concepts of the pointer implementation under the CLR context.
Fast Equality Comparison
10/11/2019 8:53:19 AM.
How to compare value types, arrays and determine whether the value is default value of particular type fast.
SPSecurity.RunWithElevatedPriviledges Vs SpUserToken Vs AllowUnsafeUpdates In SharePoint
5/29/2019 11:41:24 PM.
In this article, you will learn about the concept of SPSecurity.RunWithElevatedPriviledges vs SpUserToken vs AllowUnsafeUpdates In SharePoint.
Pointers And Unsafe Code In C# - Everything You Need To Know
9/25/2016 7:11:54 AM.
In this article, you will learn about pointers and unsafe code in C#.
Pointers And Unsafe Code
5/6/2016 11:08:04 AM.
In this article you will learn about Pointers and Unsafe Code in C#.
Understanding Unsafe Code in C#
3/13/2015 8:33:19 PM.
This article helps us to understand and use unsafe code in C# programming.
Writing C# 2.0 Unsafe Code
10/13/2012 3:55:54 AM.
We will see that C# allows suspending the verification of code by the CLR to allow developers to directly access memory using pointers.
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#.
Creating a Stack-Based Array
10/12/2009 10:42:46 AM.
- Learn how to create high-performance stack-based short-lived arrays. - Learn how to work with array pointers. - Learn how to copy arrays many times faster.