Skip to content

Commit 6143d79

Browse files
authored
added csharp colorizer
1 parent c70b0e2 commit 6143d79

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

docs/t-sql/data-types/write-database-engine.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Write writes out a binary representation of **SqlHierarchyId** to the passed-in
2626

2727
## Syntax
2828

29-
```syntaxsql
29+
```csharp
3030
void Write( BinaryWriter w )
3131
```
3232

@@ -44,12 +44,11 @@ Write is used internally by [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md
4444

4545
## Examples
4646

47-
```sql
47+
```csharp
4848
MemoryStream stream = new MemoryStream();
4949
BinaryWriter bw = new BinaryWriter(stream);
5050
hid.Write(bw);
5151
byte[] encoding = stream.ToArray();
52-
5352
```
5453

5554
## See also

0 commit comments

Comments
 (0)