Question : The more and bigger mass storage devices dedicated for ReadyBoost the merrier?

Hi everyone,
  I'm currently using a 1Gig USB 2.0 Flash Drive and a 512 SD Card simultaneously for additiona speed / l RAM boost on my Acer Aspire One netbook / System Model AOA150 with  Intel Atom CPU N270 @ 1.60Ghz.

 1. Does this really speed up my netbook?

 2. Does plugging in more and bigger capacity USB Flash drives, e.g. and 8Gig USB 2.0 Flash drive, on all available USB slots on my netbook or to my other computer will guarantee a faster performance of the computer?
 
 3. What if I have lets say 8 Port USB Hub (since there is only 1 available USB port in the motherboard) connected to 8 10G USB 2.0 Flash drives, can all of these be used with ReadyBoost?

 4. How about a WD Element 160G, will this work if I dedicate this for ReadyBoost?


 Thanks in advance.

Answer : The more and bigger mass storage devices dedicated for ReadyBoost the merrier?

public int id { get; set; } is automatic property and doesn't create any private version. Just use "id" in your code. http://msdn.microsoft.com/en-us/library/bb384054.aspx

If you still want access private use traditional style.

private int _id;
public int id
{
get { return _id; }
set { _id = value;}
}
Random Solutions  
 
programming4us programming4us