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 csharp.md #9430

Merged
merged 1 commit into from
Jul 30, 2024
Merged
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
4 changes: 2 additions & 2 deletions release-notes/9.0/preview/preview6/csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The Regex source generator has been updated and if you prefer to use a property,

```csharp
[GeneratedRegex("abc|def")]
private static partial Regex AbcOrDefProperty { get; };
private static partial Regex AbcOrDefProperty { get; }

if (AbcOrDefProperty.IsMatch(text))
{
Expand All @@ -44,4 +44,4 @@ Partial properties will make it easier for source generator designers to create

## Get started with C# 13

There are a lot more features in C# 13 for you to try today. Be sure to read our recent [blog on all of the features available](https://devblogs.microsoft.com/dotnet/csharp-13-explore-preview-features) in preview and our always up to date documentation on [What's new in C# 13](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-13).
There are a lot more features in C# 13 for you to try today. Be sure to read our recent [blog on all of the features available](https://devblogs.microsoft.com/dotnet/csharp-13-explore-preview-features) in preview and our always up to date documentation on [What's new in C# 13](https://learn.microsoft.com/dotnet/csharp/whats-new/csharp-13).
Loading