This works but I wanted to use the "using" keyword.
Stream st = null; st = request.GetRequestStream(); st.Write(bytes, 0, bytes.Length); st.Close(); How would I go about using the keyword "using" here?
using (Stream st = ...
using (Stream st = request.GetRequestStream()) { st.Write(bytes, 0, bytes.Length); }