/// <summary> /// Encode a string with Base64 /// </summary> public static string Encode(string input) { return(MtaShared.Base64Encode(input)); }