i was wondering, what kind of method i should be using
public class UserProfile {
public String GetAsString(){
... Some Stuff
return anyString;
}
// Or this one
public static String GetAsString(UserProfile profile){
... Some Stuff
return anyString;
}
}
Are there any performance issues, or anything i should be using one of these methods?
Thanks for helping me