Provide the .idup array property.
char[] arr = ['a', 'b', 'c']; string s = arr.idup; arr[0] = '.'; assert(s == "abc");
See Implementation
Provide the .idup array property.