ADO.NET - Size 속성의 크기가 0입니다. ADO를 통해 DB에서 출력값을 구하려고 합니다.NET. 클라이언트 코드가 있습니다. using (var connection = new SqlConnection(ConnectionString)) { connection.Open(); SqlCommand command = new SqlCommand("pDoSomethingParamsRes", connection); command.CommandType = CommandType.StoredProcedure; command.Parameters.Add("@i", 1); var outParam = new SqlParameter("@out", SqlDbType.VarChar); outParam.Direction = ..