Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update c# resources #464

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/content/resources/language/c-sharp/access-modifiers.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
---
authors:
- "Stone_Red#0001"
created_at: 2021/08/07
created_at: 2023/09/16
title: Access Modifiers
external_resources:
- text: Access Modifiers
href: "https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/access-modifiers"
href: "https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/access-modifiers"
- text: Accessibility Levels
href: "https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/accessibility-levels"
---

## Availible access modifiers
Expand All @@ -16,6 +18,7 @@ external_resources:
- **internal:** The type or member can be accessed by any code in the same assembly, but not from another assembly.
- **protected internal:** The type or member can be accessed by any code in the assembly in which it's declared, or from within a derived class in another assembly.
- **private protected:** The type or member can be accessed only within its declaring assembly, by code in the same class or in a type that is derived from that class.
- **file** The declared type is only visible in the current source file. File scoped types are generally used for source generators.

## Why not use _public_ for everything?

Expand Down
6 changes: 4 additions & 2 deletions src/content/resources/language/c-sharp/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@ authors:
- "Stone_Red#0001"
- "HueByte#0001"
- "sfn#3771"
- "Draxis#1559"
created_at: 2021/08/07
- "Draxis#6666"
created_at: 2023/09/16
title: C#
---

###### Documentation

- [C# docs](https://docs.microsoft.com/en-us/dotnet/csharp/)
- [What's new?](https://learn.microsoft.com/en-us/dotnet/csharp/whats-new)

###### Tutorials

- [Introduction to C#](https://docs.microsoft.com/en-us/dotnet/csharp/tutorials/intro-to-csharp/)
- [A tour of the C# language](https://learn.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/)
- [C# Fundamentals Development for Absolute Beginners:](https://channel9.msdn.com/Series/CSharp-Fundamentals-for-Absolute-Beginners)
- [AngelSix's C# Beginner's course](https://www.youtube.com/watch?v=STw363BHviY&list=PLrW43fNmjaQXhWOKalftye87ObZA-xNIJ)

Expand Down
Loading