zoukankan      html  css  js  c++  java
  • Visual studio 2019 preview & C# 8 initial experience

    Visual studio 2019 preview & C# 8 initial experience

     

     

     

    using System;

    using static System.Console;

    namespace ConsoleApp2

    {

    class Program

    {

    static void Main(string[] args)

    {

    string s = null;

    WriteLine(s.ToString());

    WriteLine($"The first letter of {s} is {s[0]}");

    }

    }

    }

     

    <Project Sdk="Microsoft.NET.Sdk">

     

    <PropertyGroup>

    <OutputType>Exe</OutputType>

    <TargetFramework>netcoreapp3.0</TargetFramework>

    <ApplicationIcon />

    <StartupObject />

    <AssemblyName>ConsoleApp1</AssemblyName>

    <RootNamespace>ConsoleApp1</RootNamespace>

    <LangVersion>8.0</LangVersion>

    <NullableReferenceTypes>true</NullableReferenceTypes>

    </PropertyGroup>

     

     

     

     

     

    using System;

    using static System.Console;

    namespace ConsoleApp2

    {

    class Program

    {

    static void Main(string[] args)

    {

    string? s = null;

     

    WriteLine($"The first letter of {s}is {s?[0] ?? '?'}");

    }

    }

    }

     

  • 相关阅读:
    Majority Element
    Longest Increasing Subsequence
    Count Primes
    Valid Parentheses
    Largest Rectangle in Histogram
    Linked List Cycle II
    Linked List Cycle
    Evaluate Reverse Polish Notation
    Longest Valid Parentheses
    适配总结
  • 原文地址:https://www.cnblogs.com/xiexiaokui/p/10121591.html
Copyright © 2011-2022 走看看