Click here to Skip to main content
15,867,686 members

Comments by FuFu Dev's (Top 5 by date)

FuFu Dev's 21-Jul-23 2:02am View    
Yes only contains list(collection) of strings.
FuFu Dev's 20-Jul-23 9:16am View    
Yes that's what I was thinking and trying to avoid another method. I know with a normal string you can just compare it with a simple code like: if(Model1.name == Model2.Name){//Do Something} and the with CodeDescription you can do something like: if(Model1.StudentType.Code == Model2.StudentType.code && Model1.StudentType.Description == Model2.StudentType.Description){//Do Something}........... but now I have no Idea how to do it for a collection or List :)
FuFu Dev's 20-Jul-23 6:08am View    
This would be good solution if only I had access to the Address class but unfortunately I don’t have access all I have is what it has returned. But thanks for the answer much appreciated 🫶🏽
FuFu Dev's 19-Jul-23 9:11am View    
I am not sure if I am understanding you. but the scenario is that in hand I have Address 1 and Address 2 which have the same properties. I want a simple check that indeed those two addresses have got the same values.
FuFu Dev's 19-Jul-23 9:02am View    
I have rephrase the question for better understanding. thanks.