BinaryFormatter sterlizer = new BinaryFormatter();
MemoryStream picOut = new MemoryStream();
sterlizer.Serialize(picOut, "BLABLA" );
all that is getting put into picOut is a bunch of zeros, however the number of zeros does change depending on what i try to sterilize but it defiantly seems like there should be some ones too.
any one know what going on here.
