From 95dbf33ce6fe555d8011addf9621a524b6f66c2d Mon Sep 17 00:00:00 2001 From: SkelletonXx <168378312+SkelletonXx@users.noreply.github.com> Date: Tue, 19 Aug 2025 21:10:13 -0300 Subject: [PATCH] Update README.nuget.md --- README.nuget.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.nuget.md b/README.nuget.md index 26547c1..16c7a01 100644 --- a/README.nuget.md +++ b/README.nuget.md @@ -32,8 +32,8 @@ SimConnect.NET is currently in beta development. APIs may change, features may b await client.ConnectAsync(); // Get aircraft data - var altitude = await client.SimVarManager.GetAsync("PLANE ALTITUDE", "feet"); - var airspeed = await client.SimVarManager.GetAsync("AIRSPEED INDICATED", "knots"); + var altitude = await client.SimVars.GetAsync("PLANE ALTITUDE", "feet"); + var airspeed = await client.SimVars.GetAsync("AIRSPEED INDICATED", "knots"); Console.WriteLine($"Altitude: {altitude:F0} ft"); Console.WriteLine($"Airspeed: {airspeed:F0} kts");