Skip to content

Commit a351596

Browse files
author
Colin Robertson
authored
Merge pull request #3432 from Jaiganeshkumaran/patch-3
Update boxing-c-cx.md
2 parents 60f26c7 + 05f4151 commit a351596

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/cppcx/boxing-c-cx.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ C# and Visual Basic support the concept of nullable value types. In C++/CX, you
2323
In a C# XAML client, you can consume it like this:
2424

2525
```
26-
2726
// C# client code
28-
BoxingDemo.Class1 obj = new BoxingDemo.Class1();
29-
int? a = null;
30-
int? b = 5;
31-
var result = obj.Multiply(a,b); //result = null
27+
BoxingDemo.Class1 obj = new BoxingDemo.Class1();
28+
int? a = null;
29+
int? b = 5;
30+
var result = obj.Multiply(a, b); //result = null
3231
```
3332

3433
## See also

0 commit comments

Comments
 (0)