C# - Nullable Type

Поділитися
Вставка
  • Опубліковано 2 січ 2025

КОМЕНТАРІ • 5

  • @TutorialsPoint_
    @TutorialsPoint_  Рік тому

    To Get Certification, Click Here: bitly.ws/P9Up
    Use coupon "UA-cam12" to get ‘’FLAT 12%’’ OFF at Checkout.

  • @omkar1o
    @omkar1o 5 років тому

    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();
    }
    }
    }

  • @akmalpathan1
    @akmalpathan1 Місяць тому

    thank you

  • @amjedali82
    @amjedali82 6 років тому

    thank you so much

  • @moksha6986
    @moksha6986 4 роки тому +3

    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