Как конвертировать визуальный базовый оператор \ в C #

Как конвертировать визуальный базовый оператор \ в C #? Я имею в виду, какой аналог \ в C #?

Dim r As Integer
r = x - (5 + (x + 1) \ 6)

Спасибо!

Integer division is carried out using the \ Operator. Integer division returns the quotient, that is, the integer that represents the number of times the divisor can divide into the dividend without consideration of any remainder. Both the divisor and the dividend must be integral types (SByte, Byte, Short, UShort, Integer, UInteger, Long, and ULong) for this operator. All other types must be converted to an integral type first. The following example demonstrates integer division.

VB Dim k As Integer k = 23 \ 5 ' The preceding statement sets k to 4.

Ответы на вопрос(4)

Ваш ответ на вопрос