by zapbrannigan » Wed Aug 18, 2021 7:58 am
What does the hashtag mean? codelist.Add("#5 = 12.23");
Taken from the help file in UCCNC folder:
List<string> codelist = new List<string>(); //Create a new List of strings.
codelist.Add("G0 Z-25"); //Add g-code lines to the List.
codelist.Add("M3");
codelist.Add("G1 X0 Y0 F500");
codelist.Add("#5 = 12.23");
codelist.Add("G1 X#5 Y2");
exec.Codelist(codelist); //Execute the List of g-codes.
EDIT: nevermind. It looks like a constant declaration. Thats what Im going with anyway.