Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
EFFICIENT CREATION OF AN EMPTY COLLECTION IN .NET
Search
Benjamin Abt
June 02, 2022
Programming
0
230
EFFICIENT CREATION OF AN EMPTY COLLECTION IN .NET
https://github.com/BenjaminAbt/SustainableCode
Benjamin Abt
June 02, 2022
Tweet
Share
More Decks by Benjamin Abt
See All by Benjamin Abt
.NET - ToUpper vs. ToLower
abt
0
180
SustainableCode: Improve performance and reduce allocations with object pooling in .NET
abt
0
1.2k
Azure Data Centers and Regions
abt
0
900
Azure Static Web Apps
abt
0
1.1k
DateTime vs. DateTimeOffset in .NET
abt
1
1.3k
What's new in Visual Studio 2022
abt
0
470
Other Decks in Programming
See All in Programming
Building a macOS screen saver with Kotlin (Android Makers 2025)
zsmb
1
140
Do Dumb Things
mitsuhiko
0
410
サービスクラスのありがたみを発見したときの思い出 #phpcon_odawara
77web
4
610
AWSで雰囲気でつくる! VRChatの写真変換ピタゴラスイッチ
anatofuz
0
140
Unlock the Potential of Swift Code Generation
rockname
0
230
Qiita Bash
mercury_dev0517
1
180
PHPのガベージコレクションを深掘りしよう
rinchoku
0
260
Defying Front-End Inertia: Inertia.js on Rails
skryukov
0
440
Django for Data Science (Boston Python Meetup, March 2025)
wsvincent
0
310
remix + cloudflare workers (DO) docker上でいい感じに開発する
yoshidatomoaki
0
120
メモリウォールを超えて:キャッシュメモリ技術の進歩
kawayu
0
1.8k
Firebase Dynamic Linksの代替手段を自作する / Create your own Firebase Dynamic Links alternative
kubode
0
230
Featured
See All Featured
Side Projects
sachag
452
42k
Become a Pro
speakerdeck
PRO
27
5.3k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
227
22k
Writing Fast Ruby
sferik
628
61k
Mobile First: as difficult as doing things right
swwweet
223
9.6k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Making Projects Easy
brettharned
116
6.1k
Testing 201, or: Great Expectations
jmmastey
42
7.4k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
12
650
The Cult of Friendly URLs
andyhume
78
6.3k
Designing Experiences People Love
moore
141
23k
Building a Modern Day E-commerce SEO Strategy
aleyda
39
7.2k
Transcript
EFFICIENT CREATION OF AN EMPTY COLLECTION IN
There are several ways to create a list: - Using
a list: List<string>() - By creating an array new string[]() - With the helper Enumerable.Empty<string>() But what is the most efficient way?
https://github.com/BenjaminAbt/SustainableCode