Hi i am using Visual Studio 2019 and i need to write console.writeline alway. Which you are not doing . can you please tell me is it just difference of IDE or system library. for exmple using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tutorials_Point { class Program { static void Main(string[] args) { string a = null; int? b = null; object c = null; int v = b ?? 20; int? d = v; Console.WriteLine(d); Console.ReadLine(); } } }
Its very bad practice to have variable names a,b,s . Here scope of variables is small but still this course is for beginners and they must practice descriptive names since beginning , or gunna endup like what you doing in this program
To Get Certification, Click Here: bitly.ws/P9Up
Use coupon "UA-cam12" to get ‘’FLAT 12%’’ OFF at Checkout.
Hi i am using Visual Studio 2019 and i need to write console.writeline alway. Which you are not doing . can you please tell me is it just difference of IDE or system library.
for exmple
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tutorials_Point
{
class Program
{
static void Main(string[] args)
{
string a = null;
int? b = null;
object c = null;
int v = b ?? 20;
int? d = v;
Console.WriteLine(d);
Console.ReadLine();
}
}
}
thank you
thank you so much
Its very bad practice to have variable names a,b,s . Here scope of variables is small but still this course is for beginners and they must practice descriptive names since beginning , or gunna endup like what you doing in this program