J
Jay
Why is it some things require new and some do not?
System.String name;
System.Random r = new Random
System.String name;
System.Random r = new Random
Jay said:My question now is how many bytes are allocated with the following:
string name; <--how many here
as opposed to
string name = new String(' ',20); I'm assuming 20 bytes and 1 for the
null
Is it 255 bytes or not determined until there is an assignment with either
readline or direct assignment?