Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammerLP committed Oct 10, 2023
2 parents d9ca6d8 + 37393af commit 767e4c1
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions PLP-SystemInfo/ComponentInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,21 +87,20 @@ public static long GetInstalledRAMSize()
return memSize;
}

//public static long GetTotalUsableRam()
//{
// return 0;
//}

//public static long GetRamInUse()
//{
// return 0;
//}
public static long GetTotalUsableRam()
{
throw new NotImplementedException();
}

//public static long GetAvailableRam()
//{
public static long GetRamInUse()
{
throw new NotImplementedException();
}

// return 0;
//}
public static long GetAvailableRam()
{
throw new NotImplementedException();
}

public static string GetGraphicscardName()
{
Expand Down

0 comments on commit 767e4c1

Please sign in to comment.