C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
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]
Nitin Bhardwaj(2)
Jitendra Mesavaniya(1)
Sai Bagewadi(1)
Rahul Bansal(1)
Gopi Chand(1)
Jin Necesario(1)
G Gnana Arun Ganesh(1)
Praveen Kumar(1)
C# Curator(1)
Amr Monjid(1)
Stuart 0(1)
Erlend (1)
Dipal Choksi(1)
Mike Gold(1)
Robert Rybaric(1)
Hari Sankar(1)
Mahesh Chand(1)
Resources
No resource found
Understanding ToString() vs Convert.ToString() in C#
May 23, 2024.
In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these two methods can help you choose the right one for your needs.
Why and How to Override ToString() Method in C#
May 20, 2015.
This article shows how to override the ToString() method in C#.
Why To Use Convert.ToString() Over ToString()
Mar 12, 2015.
In this article we compare the Convert.ToString() over .ToString().
ToString Method in Java
Apr 22, 2014.
In this article we will learn about one of the important methods, the toString() method, in Java with a basic illustration for a better understanding and explanation.
Identify If A Variable Is An Array Or Object In JavaScript
Oct 26, 2020.
This article will show and guide you to choose the functions and operators when checking if a variable is an array or object.
Number Object Method In TypeScript: Part 4
Feb 02, 2013.
In this article, you will learn about the number object method toPrecision in TypeScript.
Array Object In TypeScript: Part 6
Jan 17, 2013.
In this article, you will learn about the array object methods splice and toString in TypeScript.
Boxing and Unboxing in VB.NET
Nov 10, 2012.
Boxing and unboxing is a essential concept in VB.NET’s type system. With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type object.
Introduction to C#
Nov 11, 2009.
This article concentrates on C# language programming.
The Object Class in .NET
Aug 06, 2009.
All the types in .NET are represented as objects and are derived from the Object class.
Overriding The System.Object Class Methods
Jun 03, 2008.
In this article you will take a look on the Object class the base class for all data types in the .NET Framework. You will see also how to give your custom type a new look by overriding the Object class virtual methods.
Boxing and Unboxing of Value Types : What You Need to Know?
Jul 21, 2003.
Programmers new to C# can encounter less than ideal performance and even unexpected results due to boxing and unboxing of value types.
Recipe to Implement Threads Quick n Easy in C#
Aug 28, 2002.
In this tutorial type article, author shows how to write threading applications quick and easy in C#.
Windows Services Admin: Control Your Windows Services
May 20, 2002.
In this article, we will create an application to control Windows services on our local computer as well as on remote computers. You can simultaneously Stop or Start multiple Services on the local computer or on the specified remote computer.
FlashCards Language Program : How to read and save Images in a Sql Server Database using ADO.NET
Nov 09, 2001.
I thought it would be fun to write a simple program that displayed flashcards from a database and at the same time, show you how to read and write images to the database. This program is a simple flashcard program that talks to a single table in a Sql Server Database.
Complex Numbers Class
Mar 20, 2001.
This small example demonstrates using some of the interesting language elements of the C# language.
Making UI more responsive using Threading
Feb 12, 2001.
This example shows how threads can help us to make User interface more responsive when we have some background jobs.
Creating an Empty Project using VS.NET
Dec 04, 2000.
This tutorial guides you towards your first C# Empty project step by step. After that I'll show you how to add a class to the project and few members to the class and call this class members from the main method.