String vs string

  • Thread starter Thread starter shayke
  • Start date Start date
S

shayke

Hello

does anybody knows the difference between String( object) to
string(primitive)?

Regards
shayke
 
string is an alias for String. string is replaced by the compiler with
"System.String"
 
Back
Top