C
C#3d ago
yourFriend

✅ *"Converting possible null value to non nullable type"* warning in `Console.ReadLine()`

Can I ignore "Converting possible null value to non nullable type" warning here:
string s = Console.ReadLine();
string s = Console.ReadLine();
I have never faced any runtime errors even when entering nothing on Console. Seems like an unnecessary warning. Sory for the dumbest question ever :catderp:
No description
3 Replies
Buddy
Buddy3d ago
If the Ctrl+Z key combination (followed by Enter on Windows) is pressed when the method is reading input from the console, the method returns null.
https://learn.microsoft.com/en-us/dotnet/api/system.console.readline?view=net-9.0#remarks just declare it as a nullable by doing string? s = Console.ReadLine(); basically it means that it can be assigned a null value - which ReadLine may return
yourFriend
yourFriendOP3d ago
Ok so, I was doing null check string.IsNullOrWhiteSpace() before returning string to my Main method that's why I was not able to generate Null Reference Exception. whether I declare string s or string? s Yes Thank you both for info
Angius
Angius3d ago
You can handle it very easily, fwiw
string str = Console.ReadLine() ?? string.Empty;
string str = Console.ReadLine() ?? string.Empty;

Did you find this page helpful?