We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed54a2c commit f3b665fCopy full SHA for f3b665f
2 files changed
TryCSharp.Samples/CSharp6/NullPropagatingOperatorSamples01.cs
@@ -0,0 +1,13 @@
1
+using TryCSharp.Common;
2
+
3
+namespace TryCSharp.Samples.CSharp6
4
+{
5
+ [Sample]
6
+ public class NullPropagatingOperatorSamples01 : IExecutable
7
+ {
8
+ public void Execute()
9
10
+ throw new System.NotImplementedException();
11
+ }
12
13
+}
TryCSharp.Samples/TryCSharp.Samples.csproj
@@ -146,6 +146,7 @@
146
<Compile Include="Commons\Extensions\StringExtensions.cs" />
147
<Compile Include="CSharp6\AutoPropSamples01.cs" />
148
<Compile Include="CSharp6\ExpressionBodySamples01.cs" />
149
+ <Compile Include="CSharp6\NullPropagatingOperatorSamples01.cs" />
150
<Compile Include="CSharp6\UsingStaticSamples01.cs" />
151
<Compile Include="Dummy.cs" />
152
<Compile Include="Helpers\CompareResultHelper.cs" />
0 commit comments