运行 google-驱动器上的 C#
Run C# on google-drive
我是一名计算机科学专业的学生,我想知道我是否可以 运行 一个简单的 c# 脚本(我不需要任何库,例如一个主要方法) 在 google 驱动器上 。
我正在尝试使用 https://script.google.com/ 来做到这一点,但它不起作用,可能是我配置不当。
简单的代码是这样的,但也可以是任何其他代码。
class Program {
static void main( ){
Console.Write("c# script on google drive!");
} }
我不知道它是否可行,或者我必须为此使用 google 云服务。
欢迎任何教程,link 或帮助,谢谢!
我认为您对尝试使用的系统的命名或这些系统的功能感到有些困惑。
Google Drive API 允许您创建利用 Google Drive 云存储的应用程序。您可以开发与 Google Drive 集成的应用程序,并使用 Google Drive API 在您的应用程序中创建强大的功能。它不会让你 运行 任何东西。它只是文件存储。
Google app script makes it easy to create and publish add-ons for Google Docs, Sheets, Slides, and Forms. The language it uses is JavaScript. That being said this is not the same as calling an app script function from C# using Execute C#
如果您实际上想要做的是 运行 Google 云中的 .net 应用程序,那么我认为您正在寻找的是 Google cloud functions 您可以编写一个 google .net 中的云函数和 运行 它在 Google 云中。
我是一名计算机科学专业的学生,我想知道我是否可以 运行 一个简单的 c# 脚本(我不需要任何库,例如一个主要方法) 在 google 驱动器上 。
我正在尝试使用 https://script.google.com/ 来做到这一点,但它不起作用,可能是我配置不当。
简单的代码是这样的,但也可以是任何其他代码。
class Program {
static void main( ){
Console.Write("c# script on google drive!");
} }
我不知道它是否可行,或者我必须为此使用 google 云服务。 欢迎任何教程,link 或帮助,谢谢!
我认为您对尝试使用的系统的命名或这些系统的功能感到有些困惑。
Google Drive API 允许您创建利用 Google Drive 云存储的应用程序。您可以开发与 Google Drive 集成的应用程序,并使用 Google Drive API 在您的应用程序中创建强大的功能。它不会让你 运行 任何东西。它只是文件存储。
Google app script makes it easy to create and publish add-ons for Google Docs, Sheets, Slides, and Forms. The language it uses is JavaScript. That being said this is not the same as calling an app script function from C# using Execute C#
如果您实际上想要做的是 运行 Google 云中的 .net 应用程序,那么我认为您正在寻找的是 Google cloud functions 您可以编写一个 google .net 中的云函数和 运行 它在 Google 云中。