昔入れたmono、versionは4.8.0です。
[vagrant@localhost csharp]$ . /opt/mono/env.sh [vagrant@localhost csharp]$ mono --version Mono JIT compiler version 4.8.0 (Stable 4.8.0.495/e4a3cf3 Thu Feb 23 18:33:47 UTC 2017) Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com TLS: __thread SIGSEGV: altstack Notifications: epoll Architecture: amd64 Disabled: none Misc: softdebug LLVM: yes(3.6.0svn-mono-/) GC: sgen
cs
using System; class MyApp { static void Main(){ Console.WriteLine("Hello World"); } }
compileはmcs
[vagrant@localhost csharp]$ mcs MyApp.cs [vagrant@localhost csharp]$ ls MyApp.cs MyApp.exe [vagrant@localhost csharp]$ mono MyApp.exe Hello World
using System; class MyApp { static void Main(){ string msg = "Hello csharp"; Console.WriteLine(msg); } }
定数:const string msg = “Hello csharp”;
visual studio
inputとtodoが多すぎて混乱してきた。
1.mongo DBを使ってanalyticsをつくる
2.c# + visual studioでazure cosmosDBに接続する
3.c#でアプリケーションをつくって、azureで公開する
-> c#、visual studioは基本から学ばなければならないので、習得しながら疑似GAの完成までもっていくには恐らく時間がかかりすぎる
-> azure + c# は慣れるまではもっと簡単なテーマ・アプリケーションから作りたい
-> まずは analyticsは VPS + PHP + mongoDB + chart.jsで作り上げる
よし、これで行こう!