Show / Hide Table of Contents

Class MutableGlobal<T>

Represents a mutable WebAssembly global value.

Inheritance
System.Object
MutableGlobal<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Wasmtime
Assembly: Wasmtime.Dotnet.dll
Syntax
public class MutableGlobal<T>
Type Parameters
Name Description
T

Constructors

| Improve this Doc View Source

MutableGlobal(T)

Creates a new MutableGlobal<T> with the given initial value.

Declaration
public MutableGlobal(T initialValue)
Parameters
Type Name Description
T initialValue

The initial value of the global.

Properties

| Improve this Doc View Source

Value

The value of the global.

Declaration
public T Value { get; set; }
Property Value
Type Description
T
  • Improve this Doc
  • View Source
Back to top Generated by DocFX