Skip to content
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
32 changes: 32 additions & 0 deletions .openpublishing.redirection.json
Original file line number Diff line number Diff line change
Expand Up @@ -1760,14 +1760,46 @@
"source_path": "docs/csharp/structs.md",
"redirect_url": "/dotnet/csharp/language-reference/builtin-types/struct"
},
{
"source_path": "docs/csharp/tour-of-csharp/arrays.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/features#arrays-collections-and-LINQ"
},
{
"source_path": "docs/csharp/tour-of-csharp/attributes.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/features#attributes"
},
{
"source_path": "docs/csharp/tour-of-csharp/delegates.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/features#delegates-and-lambda-expressions"
},
{
"source_path": "docs/csharp/tour-of-csharp/enums.md",
"redirect_url": "/dotnet/csharp/language-reference/builtin-types/enum"
},
{
"source_path": "docs/csharp/tour-of-csharp/expressions.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/program-building-blocks#expressions"
},
{
"source_path": "docs/csharp/tour-of-csharp/interfaces.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/types#interfaces"
},
{
"source_path": "docs/csharp/tour-of-csharp/program-structure.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/#program-structure"
},
{
"source_path": "docs/csharp/tour-of-csharp/statements.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/program-building-blocks#statements"
},
{
"source_path": "docs/csharp/tour-of-csharp/structs.md",
"redirect_url": "/dotnet/csharp/language-reference/builtin-types/struct"
},
{
"source_path": "docs/csharp/tour-of-csharp/types-and-variables.md",
"redirect_url": "/dotnet/csharp/tour-of-csharp/types"
},
{
"source_path": "docs/csharp/tuples.md",
"redirect_url": "/dotnet/csharp/language-reference/builtin-types/value-tuples"
Expand Down
2 changes: 1 addition & 1 deletion docs/csharp/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Types can override inherited members by using the `override` keyword and providi

## Passing parameters

Types in C# are either *value types* or *reference types*. For a list of built-in value types, see [Types and variables](./tour-of-csharp/types-and-variables.md). By default, both value types and reference types are passed to a method by value.
Types in C# are either *value types* or *reference types*. For a list of built-in value types, see [Types](./tour-of-csharp/types.md). By default, both value types and reference types are passed to a method by value.

<a name="byval"></a>

Expand Down
24 changes: 6 additions & 18 deletions docs/csharp/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,24 +72,12 @@
items:
- name: Introduction
href: tour-of-csharp/index.md
- name: Program Structure
href: tour-of-csharp/program-structure.md
- name: Types and Variables
href: tour-of-csharp/types-and-variables.md
- name: Expressions
href: tour-of-csharp/expressions.md
- name: Statements
href: tour-of-csharp/statements.md
- name: Classes and objects
href: tour-of-csharp/classes-and-objects.md
- name: Arrays
href: tour-of-csharp/arrays.md
- name: Interfaces
href: tour-of-csharp/interfaces.md
- name: Delegates
href: tour-of-csharp/delegates.md
- name: Attributes
href: tour-of-csharp/attributes.md
- name: Types
href: tour-of-csharp/types.md
- name: Program building blocks
href: tour-of-csharp/program-building-blocks.md
- name: Major language areas
href: tour-of-csharp/features.md
- name: What's new in C#
items:
- name: C# 8.0
Expand Down
43 changes: 0 additions & 43 deletions docs/csharp/tour-of-csharp/arrays.md

This file was deleted.

29 changes: 0 additions & 29 deletions docs/csharp/tour-of-csharp/attributes.md

This file was deleted.

Loading