Operators.IntDivideObject(Object, Object) 方法
定义
表示 Visual Basic 整除 (\) 运算符。Represents the Visual Basic integer division (\) operator.
此 API 支持产品基础结构,不能在代码中直接使用。
public:
static System::Object ^ IntDivideObject(System::Object ^ Left, System::Object ^ Right);
public static object IntDivideObject (object Left, object Right);
public static object? IntDivideObject (object? Left, object? Right);
static member IntDivideObject : obj * obj -> obj
Public Shared Function IntDivideObject (Left As Object, Right As Object) As Object
参数
- Left
- Object
必需。Required. 任何数值表达式。Any numeric expression.
- Right
- Object
必需。Required. 任何数值表达式。Any numeric expression.
返回
Left 除以 Right 的整数商,它丢弃了所有余数,而只保留整数部分。The integer quotient of Left divided by Right, which discards any remainder and retains only the integer portion.
注解
此类支持 Visual Basic 编译器,不应在代码中直接使用。This class supports the Visual Basic compiler and is not intended to be used directly from your code.