From 74bec85e234ab0363c81526e68108369810211fb Mon Sep 17 00:00:00 2001 From: Keith Alfaro Date: Wed, 19 Dec 2018 14:48:09 -0500 Subject: [PATCH] DefaultArgumentAttribute should use fully qualified naming to avoid namespace conflicts --- src/SampleLibraryZeroTouch/Examples/BasicExample.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SampleLibraryZeroTouch/Examples/BasicExample.cs b/src/SampleLibraryZeroTouch/Examples/BasicExample.cs index 215d526..54364cb 100644 --- a/src/SampleLibraryZeroTouch/Examples/BasicExample.cs +++ b/src/SampleLibraryZeroTouch/Examples/BasicExample.cs @@ -119,7 +119,7 @@ public static BasicExample Create(double x=42.0, double y=42.0, double z=42.0) /// /// A point. /// A BasicExample object. - public static BasicExample Create([DefaultArgumentAttribute("Point.ByCoordinates(5,5,5);")]Point point) + public static BasicExample Create([DefaultArgumentAttribute("Autodesk.DesignScript.Geometry.Point.ByCoordinates(5,5,5);")]Point point) { return new BasicExample(point.X, point.Y, point.Z); }