File: WasmMemory.cs
Web Access
Project: src\src\Components\benchmarkapps\Wasm.Performance\TestApp\Wasm.Performance.TestApp.csproj (Wasm.Performance.TestApp)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.JSInterop;
 
namespace Wasm.Performance.TestApp;
 
public static class WasmMemory
{
    [JSInvokable]
    public static long GetTotalMemory() => GC.GetTotalMemory(forceFullCollection: true);
}