Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Shikha Tiwari(5)
Arun Choudhary(2)
Arpit Jain(2)
Rajiv Singh(2)
Gaurav Gupta(2)
Deepak Dwij(2)
Matthew Cochran(2)
Nilesh Jadav(1)
Rahul Bansal(1)
Ajay Yadav(1)
Phil Curnow(1)
Gregory Popek(1)
Bimal Das(1)
Mobeen Rashid(1)
Ashok Karale(1)
Neeraj Kumar(1)
Rajesh VS(1)
Sardar Mudassar Ali Khan (1)
Alkesh Bijarniya(1)
Ziggy Rafiq(1)
Sachin Singh(1)
Shubham Kumar(1)
Venkatesan Jayakantham(1)
Sushil Singh(1)
Krishna Rajput Singh(1)
Subramanyam Raju (1)
Adalat Khan(1)
Anubhav Chaudhary(1)
Sourabh Somani(1)
Praveen Kumar(1)
Mohammad Elsheimy(1)
Trevor Misfeldt(1)
Srimani Venkataraman(1)
Leonid Molochniy(1)
Nakul Goyal(1)
TimothyA Vanover(1)
Resources
No resource found
Pointers to Pointers and How Pointers Relate with Array
May 16, 2024.
Pointers is a type of data in C; hence we can also have pointers to pointers, just we have pointers to integers. Pointers to pointers offer flexibility in handling arrays, passing pointers variables to functions, etc.
Dereferencing Pointers and Void Pointers in C
Apr 29, 2024.
Dereferencing pointers involves accessing the value stored at the memory address pointed to by a pointer. Void pointers in C are generic pointers that can point to any data type but require explicit typecasting before dereferencing to access the correct data.
Use Of Pointers In C#
Oct 19, 2015.
In this article you will learn about the usage of Pointers in C#.
Various Kinds of Mouse Pointers For HTML Controls
Mar 18, 2015.
This article explains how to use various mouse pointers in HTML.
Unsafe Coding: Pointers in .NET
Nov 05, 2014.
In this article you will learn one of the advanced concepts of the pointer implementation under the CLR context.
How to Prevent Changing Mouse Pointers in Windows 8
May 09, 2012.
In this article I will describe how to prevent the changing of the Mouse Pointer in Windows 8.
Using Pointers in C#
Oct 02, 2007.
This article explains the concept of pointers and how you implement them in C# should you need to.
Writing unsafe code - pointers in C#
Oct 13, 2004.
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 feature that we do not find in Java.
The Functioning of Array of Integer Pointers
Jun 30, 2024.
In C programming, an array of integer pointers is declared similarly to a regular integer array, with the primary distinction being the addition of an asterisk (*) before the array name.
Creating Google Maps AutoComplete DropDown With Multiple Map Pointers
Mar 03, 2017.
Using this method, you can implement complete Google Maps implementation.This code is written in AngularJS and MVC , but you can use in pure JavaScript also.
Pointers And Unsafe Code In C# - Everything You Need To Know
Sep 23, 2016.
In this article, you will learn about pointers and unsafe code in C#.
Pointers And Unsafe Code
May 05, 2016.
In this article you will learn about Pointers and Unsafe Code in C#.
Pointers in C Language
Jun 04, 2015.
In this article you will learn about pointers in the C language.
Introduction to C Pointers: Basic
Jan 21, 2014.
This article describes how to work with pointers in C.
Pointers In C#
Oct 25, 2001.
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.
Explaining 3SUM Problem
Oct 31, 2024.
3SUM Problem a classic problem in computer science and is often used in coding interviews to test problem-solving skills and understanding of algorithms.
Construct a Deep Copy of LinkedList
Oct 03, 2024.
The task involves creating a deep copy of a linked list where each node has a random pointer that may point to any node or null. Using a dictionary to map original nodes to their corresponding new nodes, the algorithm efficiently sets next and random pointers, achieving O(n) time and space complexity.
Explaning Random Access in File
Sep 24, 2024.
Random access in files allows direct movement of the file pointer to any position, enabling reading or writing at specific locations without sequential processing. Functions like fseek(), ftell(), and rewind() in C help manipulate file data efficiently, making file handling more flexible and dynamic.
The Implementation of Pointer to Function
Jun 27, 2024.
This content explores the implementation of pointers to functions in C and C++ programming. It delves into their syntax, usage, and benefits, such as dynamic function calls, callback functions, and efficient memory management.
Optimizing Memory Management in C#
Jun 04, 2024.
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.
What are the Pointer Events supported in ReactJS?
May 23, 2024.
React supports a wide range of Pointer Events, which provide a unified way to handle input from various pointing devices such as a mouse, touch, or pen. Pointer Events offer more detailed information about the pointer interactions than traditional mouse or touch events.
An in-depth look at C# 10 and performance improvements
Feb 24, 2024.
Get a comprehensive analysis of Ziggy Rafiq's latest C# 10 enhancements and how they affect application performance. Discover how function pointers simplify method invocation, records enhance memory efficiency, and pattern-matching optimisations speed up execution. Discover how to use C# 10 features to optimise performance and user experience for your projects by exploring code examples illustrating these improvements.
Two Pointer Approach in Python
Feb 01, 2024.
The Two Pointer Approach is one of the most used and efficient techniques to search for a pair in a sorted array. We'll look into the working of it, implementation and use cases.
C++ Refresher - Part Four
Mar 03, 2016.
In this article you will learn about using pointers with functions, pointers and arrays, pointers to structures, and pointer arithmetic.
Customizing Mouse Pointer In Windows 10
Feb 10, 2016.
In this article you will learn how to customize Mouse Pointer in Windows 10.
Spinning Image When Mouse Pointer on Button in WPF
Apr 14, 2015.
In this article we will learn how to spin an image in a WPFapplication on MouseEnter or MouseLeave event.
Introduction To C Language
Mar 05, 2015.
In this article you will learn about the C language.
Windows Phone 8.1: Gesture Support With GestureRecognizer Class (C# XAML)
Jan 28, 2015.
This article explains how to programmatically handle gestures in WindowsPhone Store 8.1 applications.
Delegates in .NET
Jul 27, 2014.
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.
Positioning Caret in Textbox
Apr 07, 2014.
This article explains how to position a caret in text using code.
Move ToolTip Along With Mouse Pointer
Feb 25, 2014.
This article explains how to move a ToolTip along with the Mouse Pointer.
Mouse/Pointer Events in AngularJS
Dec 28, 2013.
This article explains how Mouse/Pointer Events work in AngularJS.
Pointer Input Events in Windows Store Apps Using XAML
Nov 20, 2012.
In this article I will show you the use of Pointer events in Windows Store Apps using XAML.
Pointer Events in Windows Store Apps Using C#
Nov 17, 2012.
In this article I show the uses of pointer events such as Pointer Entered and Pointer Existed and how to associate these with the mouse pointer in Windows Store Apps using XAML and C#.
Re-Enable the Mouse Pointer Drop Shadow in Windows 8
Sep 03, 2012.
This article describes how to re-enable the mouse pointer drop shadow effect in Windows 8.
Linear Pointer Changing Various Effect Using HTML5
Feb 18, 2012.
In this article we are going to understand a topic related to the designing; the scenario for this is Linear Pointer changing various effect. In this part you can select from various options and as you press the action button the pointer begins moving along dedicated points.
Concept Of A Delegate In C#
Nov 12, 2011.
An interesting and useful property of a delegate is that it does not know or care about the class of the object that it references. Any object will do; all that matters is that the method's argument types and return type match the delegate's
Delegates and Events in C#
Nov 25, 2009.
In this article I will explain about Delegates and Events in C#.
Creating a Stack-Based Array
Oct 08, 2009.
- 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.
C# Heap(ing) Vs Stack(ing) In .NET - Part One
Jan 14, 2006.
Even though with the .NET framework we don't have to actively worry about memory management and garbage collection (GC), we still have to keep memory management and GC in mind in order to optimize the performance of our applications.
Learning Delegates In C#
Jan 03, 2006.
There is this thing in C# called a delegate, which is going to be crucial to build interactions between our objects. What’s a delegate, you ask? Good question. A delegate is a pointer to a method. What’s that mean? Just like you can pass variable by reference, you can pass a reference to a method. Let me give you an example.
Iterations and Performance in .NET
Apr 15, 2003.
I’ve been implementing numerical libraries in .NET and have come to some conclusions about iteration performance.
Comparison of C# with Java: A Developer Perspective
May 29, 2002.
The .NET is a language and operating system (on Windows as of now) independent platform pretty similar to Java.
Simple Sniffer in C#
Dec 03, 2001.
This program shows you how to retrieve data from a packet using Sockets.
XML Strengths and Weaknesses with DOM, ASP, and XSL
Apr 30, 2001.
In this article we're going to take a look at some of the terminology that comes with using XML and its related technologies, as well as how to create and transform XML documents with XSL using Microsoft's MSXML parser. To test the code samples shown in this article you should be running Windows NT/2000/XP with IIS installed. You should also have SQL server 2000 installed on the same machine.
Implementing Delegates in C# : Part 2
Feb 13, 2001.
This is second part of Timothy's Delegates in C# series...