## Technical Restrictions
* **Properties and Indexers:** You cannot pass a property or an indexer as an `out` parameter. These are internally compiled as methods (getters/setters) and do not represent a single, stable memory location.
* **Asynchronous Methods:** The `out` modifier cannot be used in methods marked with the `async` modifier.
* **Iterator Methods:** The `out` modifier cannot be used in iterator methods that utilize `yield return` or `yield break` statements.
* **Overloading Resolution:** Methods can be overloaded based on the presence of an `out` modifier versus a standard value parameter. However, methods *cannot* be overloaded if the only difference in their signatures is that one takes a `ref` parameter and the other takes an `out` (or `in`) parameter. The Common Language Runtime (CLR) treats `ref`, `out`, and `in` identically at the Intermediate Language (IL) level.
<div style={{
display: "flex",
justifyContent: "space-between",
alignItems: "center",
maxWidth: "754px",
padding: "1rem 0",
marginBottom: "24px"
}}>
<span style={{ fontWeight: "bold", fontSize: "1.25rem", color: "var(--tw-prose-headings)", fontFamily: "Inter, ui-sans-serif, system-ui, sans-serif" }}>Tired of Poor C# Skills? Fix That With Deep Grasping!</span>
<a
href="https://syntblaze.com"
target="_blank"
style={{
marginLeft: "24px",
textDecoration: "none",
backgroundColor: "#007AFF",
color: "#ffffff",
padding: "6px 16px",
borderRadius: "16px",
fontSize: "0.9rem",
fontWeight: "600",
textAlign: "center",
transition: "background-color 0.2s ease"
}}
>
Learn More
</a>
</div>
<div style={{ display: "flex", gap: "12px", flexWrap: "wrap" }}>
<img src="/images/skill-tracking.png" style={{ width: "30%", minWidth: 60 }} />
<img src="/images/nuggets.png" style={{ width: "30%", minWidth: 60 }} />
<img src="/images/bite-sized-exercises.png" style={{ width: "30%", minWidth: 60 }} />
</div>
<div style={{ display: "flex", gap: "12px", flexWrap: "wrap", marginTop: "12px" }}>
<img src="/images/mastery-chain.png" style={{ width: "30%", minWidth: 60 }} />
<img src="/images/element-previews.png" style={{ width: "30%", minWidth: 60 }} />
<img src="/images/element-explanations.png" style={{ width: "30%", minWidth: 60 }} />
</div>