Steamworks.SteamRemoteStorage.FileForget C# (CSharp) Method

FileForget() public static method

public static FileForget ( string pchFile ) : bool
pchFile string
return bool
		public static bool FileForget(string pchFile) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_FileForget(pchFile2);
			}
		}