• Found it. For anyone else who may be interested...

    ' Add the input parameter and set its properties.

    Command.Parameters.Add("@SKU", SqlDbType.VarChar).Value = SKU

    Command.Parameters.Add("@Price", SqlDbType.Float).Value = Price

    Command.Parameters.Add("@RC", SqlDbType.TinyInt).Direction = ParameterDirection.Output