10 lines
No EOL
146 B
Text
10 lines
No EOL
146 B
Text
using System;
|
|
|
|
#nullable enable
|
|
|
|
public struct Student
|
|
{
|
|
public string FirstName;
|
|
public string? MiddleName;
|
|
public string LastName;
|
|
} |