We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70b0e2 commit 6143d79Copy full SHA for 6143d79
1 file changed
docs/t-sql/data-types/write-database-engine.md
@@ -26,7 +26,7 @@ Write writes out a binary representation of **SqlHierarchyId** to the passed-in
26
27
## Syntax
28
29
-```syntaxsql
+```csharp
30
void Write( BinaryWriter w )
31
```
32
@@ -44,12 +44,11 @@ Write is used internally by [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md
44
45
## Examples
46
47
-```sql
48
MemoryStream stream = new MemoryStream();
49
BinaryWriter bw = new BinaryWriter(stream);
50
hid.Write(bw);
51
byte[] encoding = stream.ToArray();
52
-
53
54
55
## See also
0 commit comments