/// <summary>
 /// Checks if the active user is subscribed to a specified AppId.
 /// Only use this if you need to check ownership of another game related to yours, a demo for example.
 /// </summary>
 public static bool IsSubscribedToApp(AppId appid) => Internal.BIsSubscribedApp(appid.Value);
Example #2
0
 /// <summary>
 /// Checks if the active user is subscribed to a specified AppId.
 /// Only use this if you need to check ownership of another game related to yours, a demo for example.
 /// </summary>
 public static bool IsSubscribedToApp(AppId appid)
 {
     return(Internal.BIsSubscribedApp(appid.Value));
 }