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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Benjamin Abt
June 02, 2022
Programming
0
240
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
190
SustainableCode: Improve performance and reduce allocations with object pooling in .NET
abt
0
1.3k
Azure Data Centers and Regions
abt
0
910
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
490
Other Decks in Programming
See All in Programming
要求定義・仕様記述・設計・検証の手引き - 理論から学ぶ明確で統一された成果物定義
orgachem
PRO
1
430
株式会社 Sun terras カンパニーデック
sunterras
0
1.9k
今更考える「単一責任原則」 / Thinking about the Single Responsibility Principle
tooppoo
2
980
Raku Raku Notion 20260128
hareyakayuruyaka
0
420
RAGでハマりがちな"Excelの罠"を、データの構造化で突破する
harumiweb
1
150
並行開発のためのコードレビュー
miyukiw
2
2k
Oxlint JS plugins
kazupon
1
1.1k
AI & Enginnering
codelynx
0
140
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
260
CSC307 Lecture 14
javiergs
PRO
0
430
Railsの気持ちを考えながらコントローラとビューを整頓する/tidying-rails-controllers-and-views-as-rails-think
moro
4
350
izumin5210のプロポーザルのネタ探し #tskaigi_msup
izumin5210
1
450
Featured
See All Featured
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
659
61k
A better future with KSS
kneath
240
18k
Lightning Talk: Beautiful Slides for Beginners
inesmontani
PRO
1
460
SEOcharity - Dark patterns in SEO and UX: How to avoid them and build a more ethical web
sarafernandez
0
130
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.4k
The Spectacular Lies of Maps
axbom
PRO
1
570
Skip the Path - Find Your Career Trail
mkilby
0
68
A Soul's Torment
seathinner
5
2.3k
Bridging the Design Gap: How Collaborative Modelling removes blockers to flow between stakeholders and teams @FastFlow conf
baasie
0
470
Beyond borders and beyond the search box: How to win the global "messy middle" with AI-driven SEO
davidcarrasco
2
63
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
0
160
Building Adaptive Systems
keathley
44
2.9k
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