Related resources for Casting
  • Implementing Broadcasting in Blazor3/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 Broadcasting3/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 Socket3/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 Core12/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 Core9/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 Java8/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 Azure7/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 Explicit4/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 Angular2/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-casting1/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 Climacell9/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 Forecasting7/19/2020 10:34:21 AM. Demo for Automated Machine Learning Forecasting by Amy Boyd
  • Raycasting In Unity6/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 JavaScript4/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 312/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 Conversion9/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 Java8/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 38/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 SignalR10/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 Spell7/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" Operators4/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 Client12/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 PHP4/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.NET11/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 performance10/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 Polymorphism8/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.