Skip to content

Commit 025a051

Browse files
authored
DefaultArgumentAttribute should use fully qualified naming to avoid namespace conflicts (#29)
1 parent 21cc3c1 commit 025a051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SampleLibraryZeroTouch/Examples/BasicExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static BasicExample Create(double x=42.0, double y=42.0, double z=42.0)
119119
/// </summary>
120120
/// <param name="point">A point.</param>
121121
/// <returns>A BasicExample object.</returns>
122-
public static BasicExample Create([DefaultArgumentAttribute("Point.ByCoordinates(5,5,5);")]Point point)
122+
public static BasicExample Create([DefaultArgumentAttribute("Autodesk.DesignScript.Geometry.Point.ByCoordinates(5,5,5);")]Point point)
123123
{
124124
return new BasicExample(point.X, point.Y, point.Z);
125125
}

0 commit comments

Comments
 (0)