null keyword - C# reference (2024)

The null keyword is a literal that represents a null reference, one that does not refer to any object. null is the default value of reference-type variables. Ordinary value types cannot be null, except for nullable value types.

The following example demonstrates some behaviors of the null keyword:

class Program{ class MyClass { public void MyMethod() { } } static void Main() { // Set a breakpoint here to see that mc = null. // However, the compiler considers it "unassigned." // and generates a compiler error if you try to // use the variable. MyClass mc; // Now the variable can be used, but... mc = null; // ... a method call on a null object raises // a run-time NullReferenceException. // Uncomment the following line to see for yourself. // mc.MyMethod(); // Now mc has a value. mc = new MyClass(); // You can call its method. mc.MyMethod(); // Set mc to null again. The object it referenced // is no longer accessible and can now be garbage-collected. mc = null; // A null string is not the same as an empty string. string s = null; string t = String.Empty; // Logically the same as "" // Equals applied to any null object returns false. Console.WriteLine("t.Equals(s) is {0}", t.Equals(s)); // Equality operator also returns false when one // operand is null. Console.WriteLine("Empty string {0} null string", s == t ? "equals": "does not equal"); // Returns true. Console.WriteLine("null == null is {0}", null == null); // A value type cannot be null // int i = null; // Compiler error! // Use a nullable value type instead: int? i = null; // Keep the console window open in debug mode. }}

C# language specification

For more information, see the C# Language Specification. The language specification is the definitive source for C# syntax and usage.

See also

null keyword - C# reference (2024)
Top Articles
Chain of Pi - Science World
Connect your AirPods and AirPods Pro to your iPhone - Apple Support
Fighter Torso Ornament Kit
Main Moon Ilion Menu
Walgreens Pharmqcy
Jefferey Dahmer Autopsy Photos
The Best English Movie Theaters In Germany [Ultimate Guide]
2022 Apple Trade P36
Victoria Secret Comenity Easy Pay
Bbc 5Live Schedule
State Of Illinois Comptroller Salary Database
PGA of America leaving Palm Beach Gardens for Frisco, Texas
DIN 41612 - FCI - PDF Catalogs | Technical Documentation
Günstige Angebote online shoppen - QVC.de
Cvs Learnet Modules
Current Time In Maryland
Playgirl Magazine Cover Template Free
Payment and Ticket Options | Greyhound
Nissan Rogue Tire Size
Schedule An Oil Change At Walmart
Iroquois Amphitheater Louisville Ky Seating Chart
The Largest Banks - ​​How to Transfer Money With Only Card Number and CVV (2024)
Best Transmission Service Margate
Hctc Speed Test
Is Holly Warlick Married To Susan Patton
Accuradio Unblocked
Cavanaugh Photography Coupon Code
Kelley Fliehler Wikipedia
Frequently Asked Questions - Hy-Vee PERKS
Landing Page Winn Dixie
47 Orchid Varieties: Different Types of Orchids (With Pictures)
Nail Salon Open On Monday Near Me
LEGO Star Wars: Rebuild the Galaxy Review - Latest Animated Special Brings Loads of Fun With An Emotional Twist
Reading Craigslist Pa
Ishow Speed Dick Leak
Skyrim:Elder Knowledge - The Unofficial Elder Scrolls Pages (UESP)
Soulstone Survivors Igg
How to Draw a Sailboat: 7 Steps (with Pictures) - wikiHow
Eastern New Mexico News Obituaries
Academy Sports New Bern Nc Coupons
Walgreens On Secor And Alexis
Top 40 Minecraft mods to enhance your gaming experience
Hawkview Retreat Pa Cost
My Gsu Portal
Jimmy John's Near Me Open
Ouhsc Qualtrics
Compete My Workforce
March 2023 Wincalendar
Morgan State University Receives $20.9 Million NIH/NIMHD Grant to Expand Groundbreaking Research on Urban Health Disparities
Bloons Tower Defense 1 Unblocked
Códigos SWIFT/BIC para bancos de USA
Latest Posts
Article information

Author: Mr. See Jast

Last Updated:

Views: 6192

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Mr. See Jast

Birthday: 1999-07-30

Address: 8409 Megan Mountain, New Mathew, MT 44997-8193

Phone: +5023589614038

Job: Chief Executive

Hobby: Leather crafting, Flag Football, Candle making, Flying, Poi, Gunsmithing, Swimming

Introduction: My name is Mr. See Jast, I am a open, jolly, gorgeous, courageous, inexpensive, friendly, homely person who loves writing and wants to share my knowledge and understanding with you.