We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. ResizeArray<string> is not caught by any custom copy logic, and will be reference equal, leading to this:
ResizeArray<string>
#r "nuget: DynamicObj" open DynamicObj let r = new ResizeArray<string>(["1"; "2"]) let d1 = DynamicObj() |> DynObj.withProperty "r" r let d2 = d1.DeepCopyProperties() |> unbox<DynamicObj> r.Add("3") printfn "%A" d1?r // ["1"; "2"; "3"] printfn "%A" d2?r // ["1"; "2"; "3"] =(
The text was updated successfully, but these errors were encountered:
kMutagene
No branches or pull requests
e.g.
ResizeArray<string>
is not caught by any custom copy logic, and will be reference equal, leading to this:The text was updated successfully, but these errors were encountered: