Update Docs.md

pull/9423/head
ebicoglu 4 years ago committed by GitHub
parent ee15517d0f
commit f4cc1d1df8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -630,33 +630,33 @@ You can apply highlight to specific code lines or a range of sequential lines.
See the following examples: See the following examples:
``` ```
```C# {3, 5} ```C# {3, 5}
public class Book : Entity<Guid> public class Book : Entity<Guid>
{ {
public string Name { get; set; } public string Name { get; set; }
public string Surname { get; set; } public string Surname { get; set; }
} }
``` ```
``` ```
``` ```
```C# {2-4} ```C# {2-4}
public class Book : Entity<Guid> public class Book : Entity<Guid>
{ {
public string Name { get; set; } public string Name { get; set; }
public string Surname { get; set; } public string Surname { get; set; }
} }
``` ```
``` ```
``` ```
```C# {1, 2-4} ```C# {1, 2-4}
public class Book : Entity<Guid> public class Book : Entity<Guid>
{ {
public string Name { get; set; } public string Name { get; set; }
public string Surname { get; set; } public string Surname { get; set; }
} }
``` ```
``` ```
--- ---

Loading…
Cancel
Save