[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-null-operator-10.cs
blob1822fb76a66deb9e11bba5bf4676320d480231a9
1 using System;
3 class Event
5 public string Name { get; set; }
6 public string Foo { get; set; }
9 class X
11 public static void Main ()
13 var evt = new Event();
14 string str = (evt.Foo != null ? evt?.Name : "").Trim();