Table of Contents

Class Class1

Namespace
BasilEngine
Assembly
BasilEngine.dll
[Disabled]
[NativeHeader("Runtime/Engine/Public/EngineAPI/Class1.h")]
public class Class1
Inheritance
Class1
Inherited Members

Methods

Add(int, int)

Adds two integers using a native implementation.

public static extern int Add(int a, int b)

Parameters

a int

First operand.

b int

Second operand.

Returns

int

Sum of a and b.

AddNat(int, int)

Adds two integers using a managed stub implementation.

public int AddNat(int a, int b)

Parameters

a int

First operand.

b int

Second operand.

Returns

int

Sum of the inputs.