Browse Source

Update c_sharp_exports.rst

changed line 458:
    public MyEnum MyEnum { get; set; }
to:
    public MyEnum MyEnumCurrent { get; set; }

because it throws an error if you reuse the already declared name
Deer ♡ 4 months ago
parent
commit
d3794505f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tutorials/scripting/c_sharp/c_sharp_exports.rst

+ 1 - 1
tutorials/scripting/c_sharp/c_sharp_exports.rst

@@ -455,7 +455,7 @@ following as "Thing 1", "Thing 2", "Another Thing". The value will be stored as
     }
     }
 
 
     [Export]
     [Export]
-    public MyEnum MyEnum { get; set; }
+    public MyEnum MyEnumCurrent { get; set; }
 
 
 Integer and string members can also be limited to a specific list of values using the
 Integer and string members can also be limited to a specific list of values using the
 ``[Export]`` annotation with the ``PropertyHint.Enum`` hint.
 ``[Export]`` annotation with the ``PropertyHint.Enum`` hint.