如何在C#中使用单声道在Windows上编写程序,能够在Linux上工作?

时间:2015-07-20 11:14:51

标签: c# linux twitter mono

如何在C#中使用单声道编写一个用C#编写的程序,能够在linux上工作?

如果我在linux上启动我的程序,我会得到:http://pastebin.com/YdnAk7nD。 也许这是我的代码问题?:

using System;
using Tweetinvi;
using System.Threading;

namespace TwitterBot
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            Console.WriteLine ("Bot started");

            TwitterCredentials.SetCredentials("*****");

            var loggedUser = User.GetLoggedUser();
            var settings = loggedUser.GetAccountSettings();

            int i = 1;
            int fails = 0;
            while (true) {
                var user = User.GetUserFromId (i);
                i++;

                if (user != null) {
                    loggedUser.FollowUser (user);
                    Console.WriteLine ("Now following: " + user.Name);
                } else {
                    Console.WriteLine("Can not follow user with id: " + i);
                    fails++;
                }

                if (fails >= 100) {
                    fails = 0;
                    Console.WriteLine ("Sleep for 5 minutes");
                    Thread.Sleep (1000 * 60 * 5);
                    Console.WriteLine ("Woken up after 5 minutes");

                }
            }

        }
    }
}

2 个答案:

答案 0 :(得分:0)

Tweetinvi使用AutoFac 3。*。

AutoFac (portable library) does not work on mono

您可以尝试获取Tweetinvi的源代码并针对AutoFact for .NET 4(非便携版)进行编译,然后使用它。

答案 1 :(得分:0)

Tweetinvi应该在4.5版之后使用Mono。你能检查一下你安装的Mono的版本吗?