...

Text file src/github.com/alecthomas/chroma/lexers/testdata/csharp/csharp_8_nullable.actual

Documentation: github.com/alecthomas/chroma/lexers/testdata/csharp

     1using System;
     2
     3#nullable enable
     4
     5public struct Student
     6{
     7    public string FirstName;
     8    public string? MiddleName;
     9    public string LastName;
    10}

View as plain text