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 Casting
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jignesh Trivedi (2)
Rikam Palkar (2)
Ajay Kumar (2)
CSharp TV (2)
Phil Curnow (2)
Scott Lysle (2)
Lokendra Singh (1)
Himanshu Singh (1)
Pradeep Yadav (1)
Yadagiri Reddy (1)
Chetan Sanghani (1)
Akshima Aggarwal (1)
Abhimanyu K Vatsa (1)
Sanwar Ranwa (1)
Rahul Kumar Saxena (1)
Shikha Tiwari (1)
Jin Necesario (1)
Sanjay Singh (1)
TH Mok (1)
Abhishek Yadav (1)
Gaurav Kumar Arora (1)
Sardar Mudassar Ali Khan (1)
Vijay Kumari (1)
Diwakar Tiwari (1)
Gajendra Jangid (1)
Deepak Middha (1)
Ashirwad Satapathi (1)
Gayathri Anbazhagan (1)
Vijayakumar S (1)
Surjeet Yadav (1)
Marcus (1)
Gopi Chand (1)
Sourav Kayal (1)
Sanket (1)
Shakti Saxena (1)
Ibrahim Ersoy (1)
Neeraj Kumar (1)
Vikram Chaudhary (1)
Veena Sarda (1)
Sharad Gupta (1)
Khaled Rawy (1)
Lee SangEun (1)
Related resources for Casting
No resource found
Pattern Matching for Switch in Java 17
10/7/2024 4:17:21 AM.
Pattern matching for switches in Java 17 enhances code readability and simplifies working with complex data structures. It allows you to match object types, use type patterns, and add conditions with
A Complete Guide to NumPy: From Basics to Advanced
8/16/2024 10:26:10 AM.
NumPy, short for Numerical Python, is a powerful library for numerical computing in Python. It supports multi-dimensional arrays and matrices, with functions for mathematical operations, array manipul
Using Peek And Keep In TempData In ASP.NET MVC
8/7/2024 10:48:09 AM.
TempData in ASP.NET MVC is used to pass data between actions or controllers and can persist data across requests. Unlike ViewData and ViewBag, which only last for a single request, TempData can mainta
What Is Javascript Executor In Selenium WebDriver
7/30/2024 3:44:53 AM.
JavaScriptExecutor in Selenium WebDriver allows executing JavaScript code within a web browser. It's useful when WebDriver’s native commands fail, such as manipulating web elements or triggering b
Real-time Web Applications with SignalR
7/16/2024 7:23:49 PM.
SignalR, a Microsoft library for .NET applications, enables real-time web functionality by allowing server-side code to push updates to connected clients instantly. It abstracts complexities of commun
Understanding NumPy Broadcasting
6/28/2024 5:02:14 AM.
NumPy Broadcasting" explores an essential feature of NumPy arrays, enabling efficient element-wise operations on arrays of different shapes. Broadcasting extends operations to arrays with compati
The Is and As Operators in C#
5/31/2024 10:06:34 AM.
In C#, the "is" operator checks if an object is of a specified type, returning a boolean. The "as" operator attempts to cast an object to a specified type, returning null if the ca
Learn RXJS Multicasting Operators
5/22/2024 10:11:50 AM.
RxJS multicasting operators enable shared subscriptions among multiple observers, optimizing resource usage by performing expensive operations once. Key operators include `share`, `publish`, `multicas
Entity Framework: DbComparisonExpression Requires Arguments With Comparable Types
5/16/2024 5:44:07 AM.
The "DbComparisonExpression Requires Arguments With Comparable Types" error in Entity Framework indicates a type mismatch in a query comparison. It occurs when attempting to compare two valu
Dereferencing Pointers and Void Pointers in C
4/29/2024 11:18:18 AM.
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 t
Getting Started With ClimaCell Weather
4/24/2024 7:59:32 AM.
This article explores integrating the ClimaCell Weather API into JavaScript applications, covering API key retrieval, geolocation, API calls, and data visualization. A step-by-step guide demonstrates
All About the TempData in MVC
4/1/2024 8:16:38 AM.
TempData is a temporary data storage mechanism in ASP.NET MVC, facilitating state management between HTTP requests. Stored in session variables, it aids in passing data between consecutive requests. T
Implementing Broadcasting in Blazor
3/7/2024 4:31:21 AM.
Blazor inherently doesn't have a broadcasting model. To address this limitation, we need to implement a broadcasting model within Blazor. Broadcasting allows components to exchange information reg
Bluetooth Broadcasting
3/4/2024 6:21:47 AM.
Bluetooth Broadcasting utilizes Bluetooth technology to send messages or data to nearby devices. It enables various applications such as proximity marketing, beacon technology, and location-based serv
Peer-To-Peer Chat Program Using Asynchronous Socket
3/1/2024 9:34:58 AM.
Discover the essence of peer-to-peer chat through asynchronous sockets. Learn to design interfaces, implement real-time messaging, and ensure security for seamless communication in decentralized netwo
Building a Podcast RSS Feed Generator with ASP.NET Core
12/18/2023 6:02:26 AM.
We are podcasting with ASP.NET Core. This article guides you through building a podcast RSS feed generator using ASP.NET Core. Learn to create, populate, and test the feed, enabling seamless distribut
What is Type Conversion in C#?
10/31/2023 5:18:34 AM.
This article on type conversion in C# is comprehensive and informative. It effectively covers the fundamental concepts of type conversion, including implicit and explicit conversions, common conversio
Delegates In C#
10/18/2023 5:47:20 AM.
Delegates in C# are a fundamental concept in the language. They are used to create reference types that can encapsulate methods with a specific signature, allowing you to treat methods as objects. Del
Discussing The "Is" And "As" Operators Of C#
10/6/2023 9:19:06 AM.
The "is" and the "as" operators of C# are used to compare types. This code example shows how to use the is and as operators in the C# to avoid type mismatch exceptions or other typ
Real-time Communication with WebSocket Protocol in ASP.NET Core
9/4/2023 5:13:27 AM.
This example provides a foundational structure for real-time communication in ASP.NET Core using WebSockets. You can expand upon this foundation to create more complex real-time applications, such as
Type Casting in Java
8/7/2023 8:57:01 AM.
Typecasting is a basic concept of Java programming language. Assigning a value of one type to a variable of another type is known as Type Casting in Java.
Building the App for Predictive Disaster Forecasting using Azure
7/4/2023 7:44:31 AM.
In this session, you will learn how to Build the App for Predictive Disaster forecasting using Azure.
Type Casting In C# - Implicit Vs Explicit
4/6/2023 5:13:15 AM.
This article explains the fundamental concept of type casting in C# programming language, which involves converting one data type to another. The article covers the two types of type casting in C#: im
Broadcasting Events In Angular
2/14/2023 10:38:15 AM.
In this article, we will learn Broadcasting events in Angular application. Broadcasting events is generally use for brodcast message or data to whole application.
Use of Delegates in C#
8/22/2022 10:59:28 AM.
In this article, I explain delegates and multi-casting through delegates with an example.
Polymorphism, Up-casting and Down-casting
1/12/2022 9:05:32 AM.
This article gives an introduction to polymorphism in C#. Using the example created in this introduction, the article then goes on to describe how we up-cast and down-cast objects.
Fetch Meteorological Data From Your .Net Application With Climacell
9/1/2020 9:17:55 AM.
This article discusses about the use of climacore's weather api to fetch meteorological data in a dot net application in realtime for any geographic location.
Implicit And Explicit Type Casting In C#
8/8/2020 12:37:05 PM.
This article will help you to understand how to use typecasting in C#, why is it useful and when to use it.
Automated Machine Learning Forecasting
7/19/2020 10:34:21 AM.
Demo for Automated Machine Learning Forecasting by Amy Boyd
Raycasting In Unity
6/25/2020 2:27:22 AM.
Raycasting unity. In this article, I am going to explain about Raycasting in Unity. I hope you understand how to create the object and destroy it using C# scripts in unity.
Type Conversions in JavaScript
4/12/2020 8:25:44 PM.
In this article, you will learn about type Conversions (or) casting in JavaScript and its types.
HTML5 WebSockets (Test WebSocket For Broadcasting): Part 3
12/10/2019 2:53:22 AM.
As you learn about HTML5 WebSockets and testing with client server in my previous article here in this article we will going to test the websockets for broadcasting messages.
Core Java: Type Casting And Type Conversion
9/10/2019 3:39:48 AM.
Type casting and conversion is a basic concept in core Java that Java newcomers should consider to be as important as having breakfast. This article demonstrates how type conversions take place in Jav
Runtime Polymorphism in Java
8/7/2019 4:28:09 AM.
This article explains one of the most important concepts of Object Oriented Programming, Polymorphism, with several sets of examples along with definitions and related diagrams.
5 Tips to Improve Performance of C# Code: Part 3
8/13/2018 3:27:34 AM.
Welcome to the C# Performance Improvement Article Series. This is my third presentation.
Broadcasting Message From ASP.NET Core To Angular Client Using SignalR
10/10/2017 12:20:22 AM.
Recently, the .NET team has announced SignalR for ASP.NET Core. So, in this article, I am trying to show how we can use SignalR with ASP.NET Core for an Angular client.
Introduction To Type Casting In C#
9/25/2015 4:51:08 AM.
In this article we will learn type casting and converting in C#. Some operators will also be discussed.
NodeJS Series Part 2: Installing the Device and Casting a Simple Spell
7/6/2015 1:53:18 AM.
Here I will describe NodeJS which is Part 2 of NodeJS series.This article describes how to install Node.js and make a simple one-line program.
Delegates in C#
6/1/2015 2:40:25 PM.
This article explains delegates in C# programming with examples.
Safe Type Cast Using "IS" and "AS" Operators
4/24/2015 1:54:38 AM.
This article describes how to do safe type casting using the “IS” and “AS” operators in C# programming.
Conversion Between Types in C#
3/22/2015 4:15:26 PM.
The article describes the type conversion as well as the compile time and run time errors in C# programming.
Forecasting Using Excel 2013 Client
12/31/2014 11:55:46 PM.
In this article we will see how to use Excel 2013 as a client and the SQL Analysis Service as a server to do data mining activities.
Understanding Data Types in PHP
4/11/2013 1:45:14 PM.
In this article I will explain data types, type casting and how to test the type of a variable in PHP.
Downcasting in Visual Basic.NET
11/9/2012 6:32:54 AM.
This article describes a simple approach to downcasting in Visual Basic; downcasting merely refers to the process of casting an object of a base class type to a derived class type.
Avoid casting to improve code performance
10/4/2012 9:32:24 AM.
Casting is a big problem when it comes to the code performance. This article talks about how we can take advantage of generics in C# 2.0 to avoid casting.
Downcasting in C#
3/2/2009 12:13:35 AM.
This article describes a simple approach to downcasting in C#; downcasting merely refers to the process of casting an object of a base class type to a derived class type. Upcasting is legal in C# as the process there is to convert an object of a derived class type into an object of its base class type. In spite of the general illegality of downcasting you may find that when working with generics it is sometimes handy to do it anyway.
Abstract Base Class Polymorphism
8/30/2007 1:01:18 AM.
Refactoring the program code from my Polymorphism, Up-casting and Down-casting article to use an abstract base class.
Multicasting using UDP in C#
12/26/2005 11:35:31 PM.
The attached source code shows you how to use multi casting in a LAN environment.