Y si ya sabe, para que pregunta?
Código:
SqlConnection sqlConnection = new sqlConnection(connectionString);
SqlCommand sqlCommand = new SqlCommand("stp_algo", sqlConnection);
sqlCommand.CommandType = CommandType.StoredProcedure;
sqlCommand.Parameters.Add(new SqlParameter("@parameter", id));
sqlConnection.Open();
sqlCommand.ExecuteNonQuery();