Steamworks.SteamRemoteStorage.GetFileSize C# (CSharp) Method

GetFileSize() public static method

public static GetFileSize ( string pchFile ) : int
pchFile string
return int
		public static int GetFileSize(string pchFile) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_GetFileSize(pchFile2);
			}
		}