If I have a static method to convert one object to another object, is this method safe in C #?
public static AnotherDataClass Convert(MyDataClass target) { AnotherDataClass val = new AnotherDataClass();
I just want to make the question clearer ....
when calling the conversion method .... we can assume that the target will not change. since the Convert method was only interested in the "attrubite" target
source share