Skip to content

Commit b77da75

Browse files
committed
Added ONETUG presentation post
1 parent 3631d8e commit b77da75

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

  • src/ProgrammerAl.Site.Content/Posts/20250910_ONETUGSeptember2025
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
Title: ONETUG Meetup September 2025
2+
Published: 2025/09/10
3+
Tags:
4+
5+
- Meetup
6+
- C#
7+
8+
Presentations:
9+
- Id: 1
10+
SlidesRootUrl: https://raw.githubusercontent.com/ProgrammerAL/Presentations-2025/main/onetug-meetup-september-2025
11+
12+
---
13+
14+
## ONETUG September 2025
15+
16+
The Orlando .NET Developers Gropu (aka ONETUG) meetup group invited me to speak in their September 2025 meetup on Nullable Reference Types in C#: https://www.meetup.com/onetug/events/310624118
17+
18+
## Acount null! in C#
19+
20+
<div class="post-multiple-links-div">
21+
<a class="post-session-content-link" target="_blank" href="https://github.com/ProgrammerAL/Presentations-2025/tree/main/onetug-meetup-september-2025">View Session Content on GitHub</a>
22+
<a class="post-view-session-content-link" href="/posts/20250910_ONETUGSeptember2025/slides/1">View Slides in Browser</a>
23+
</div>
24+
25+
__Session Abstract__:
26+
Null references are a problem that can show up anywhere. As developers, we have to litter out code with null checks. Thankfully C# has a feature to help with that, Nullable Reference Types (NRTs). They utilize a mix of syntax and special C# Attributes to enable null checking at compile time. It's not a perfect system, but it's WAY better than not using NRTs.
27+
28+
In this session we'll review (and demo!) the different ways Nullable Reference Types help us when something may be null, by talking about:
29+
- The helpful NRT C# syntax and attributes
30+
- How NRT code is different for object deserialization
31+
- Cases where NRTs aren't as helpful as we'd like them to be
32+
33+

0 commit comments

Comments
 (0)