aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/Tuples
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/Tuples')
-rw-r--r--src/wixext/Tuples/ComPlusMethodTuple.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/Tuples/ComPlusMethodTuple.cs b/src/wixext/Tuples/ComPlusMethodTuple.cs
index c2fdada7..4cb451c2 100644
--- a/src/wixext/Tuples/ComPlusMethodTuple.cs
+++ b/src/wixext/Tuples/ComPlusMethodTuple.cs
@@ -48,9 +48,9 @@ namespace WixToolset.ComPlus.Tuples
48 set => this.Set((int)ComPlusMethodTupleFields.InterfaceRef, value); 48 set => this.Set((int)ComPlusMethodTupleFields.InterfaceRef, value);
49 } 49 }
50 50
51 public int Index 51 public int? Index
52 { 52 {
53 get => this.Fields[(int)ComPlusMethodTupleFields.Index].AsNumber(); 53 get => this.Fields[(int)ComPlusMethodTupleFields.Index].AsNullableNumber();
54 set => this.Set((int)ComPlusMethodTupleFields.Index, value); 54 set => this.Set((int)ComPlusMethodTupleFields.Index, value);
55 } 55 }
56 56