Scartissue
Scartissue
CC#
Created by Scartissue on 4/4/2023 in #help
❔ arent strings reference types?
string str1 = "string 1";
string str2 = "string 2";

str1 = str2;
str1 = "BLAHH";

Console.WriteLine(str1 + "\t" + str2);
Console.ReadKey();
string str1 = "string 1";
string str2 = "string 2";

str1 = str2;
str1 = "BLAHH";

Console.WriteLine(str1 + "\t" + str2);
Console.ReadKey();
why doesnt this print out BLAHH BLAHH
18 replies
CC#
Created by Scartissue on 4/4/2023 in #help
❔ how are encapsulation and data hiding different
how are encapsulation and data hiding different
5 replies