+ 8
Difference between classes and structure {plz give up vote}
2 Réponses
+ 4
Class and Structure are almost same.
Differences are as following.
1. Classes are reference type.
2. Structures are value type.
Value type copied and pass the value to new variable or method when you assign/call.
Reference type pass the reference of single instance to new variable or method.
+ 3
thx