Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Iron python と c sharp
Search
Satoshi MIMURA
October 09, 2011
Programming
0
18
Iron python と c sharp
Satoshi MIMURA
October 09, 2011
Tweet
Share
More Decks by Satoshi MIMURA
See All by Satoshi MIMURA
Inside wsl
mimura1133
0
21
Edomae 2015 - マルウェアを解析してみよう
mimura1133
0
51
Windows でも TeX 編集がしたい!
mimura1133
0
18
3本指ジェスチャの仮想デスクトップ機能を Windows に実装した話
mimura1133
0
24
Windows のカーネルモードドライバで填まった話
mimura1133
0
24
APASEC 2013 - ROP/JIT を使わずに DEP/ASLR を回避する手法を見てみた。
mimura1133
0
16
マシン語によるコード実行
mimura1133
0
12
Unix と windows 世界の融合
mimura1133
0
19
Windows Phone 7 と XNA の世界
mimura1133
0
16
Other Decks in Programming
See All in Programming
Event Storming
hschwentner
3
1.3k
DSPy入門 Pythonで実現する自動プロンプト最適化 〜人手によるプロンプト調整からの卒業〜
seaturt1e
1
400
The Ralph Wiggum Loop: First Principles of Autonomous Development
sembayui
0
3.7k
今、アーキテクトとして 品質保証にどう関わるか
nealle
0
200
JPUG勉強会 OSSデータベースの内部構造を理解しよう
oga5
2
220
文字コードの話
qnighy
43
16k
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
170
浮動小数の比較について
kishikawakatsumi
0
360
CDIの誤解しがちな仕様とその対処TIPS
futokiyo
0
140
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
120
Ruby x Terminal
a_matsuda
5
520
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
1.2k
Featured
See All Featured
Believing is Seeing
oripsolob
1
68
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
1.8k
BBQ
matthewcrist
89
10k
Joys of Absence: A Defence of Solitary Play
codingconduct
1
300
Principles of Awesome APIs and How to Build Them.
keavy
128
17k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
254
22k
jQuery: Nuts, Bolts and Bling
dougneiner
65
8.4k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.6k
職位にかかわらず全員がリーダーシップを発揮するチーム作り / Building a team where everyone can demonstrate leadership regardless of position
madoxten
59
50k
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
71
Un-Boring Meetings
codingconduct
0
220
Measuring & Analyzing Core Web Vitals
bluesmoon
9
770
Transcript
2つの世界の融合と 静的型付けな人への動的型付けこんにちは IronPython と C# - @mimura1133 1
自己紹介 材料 調理法 普通のPython とちがうところ。
まとめ IronPython と C# - @mimura1133 2
三村 聡志 (@mimura1133) › http://mimumimu.net/ セキュリティ&プログラミングキャンプ ソフトウェアセキュリティ組 (2011)
ちょっと周りと違うことをするのが趣味。 C# だいすき。 .NET いいですね。 C と CUDA は言われたらできるレベル。 Python が最近出るので、ちょっと興味もつ。 IronPython と C# - @mimura1133 3
Python といったら、 Google Apps Engine だよね! Google Apps
Engine といったら、クラウドだよね! クラウドといったら、Amazon EC2 とかもあるけど、 Windows Azure ってのもあるよね! Windows Azure と言ったら C# じゃん! よし、C# いいじゃん! IronPython と C# - @mimura1133 4
IronPython と C# - @mimura1133 5
.NET がいじれる環境。 IronPython ( http://ironpython.codeplex.com/ ) C#
の知識 .NET を愛する気持ち IronPython と C# - @mimura1133 6
Windows のひと : Visual Studio を入れておく。 そのたのひと : Mono
を入れておく。 IronPython を http://ironpython.codeplex.com/ より入手し、インストールしておく。 IronPython と C# - @mimura1133 7
コンソールを立ち上げる。 おいしい IronPython と C# - @mimura1133 8
1.問題のこいつを立ち上げる。 IronPython と C# - @mimura1133 9
2.Console Application を選んで作る。 IronPython と C# - @mimura1133 10
3.コードを書いて実行。 これもこれでおいしい IronPython と C# - @mimura1133 11
IronPython と C# - @mimura1133 12 1.問題のこいつを立ち上げる。
IronPython と C# - @mimura1133 13 2.エレガントに C#アプリケーションを作る。
3.IronPython を 参照に加える。 IronPython と C# - @mimura1133 14
4.C# のコードを書く。 IronPython と C# - @mimura1133 15
5.実行 つらい。 IronPython と C# - @mimura1133 16
IronPython と C# - @mimura1133 17
import clr clr.AddReference(“System”) clr.AddReference(“System.Windows.Forms”) from System.Windows.Forms f = form()
f.Text = “せぷきゃん!” f.Show() IronPython と C# - @mimura1133 18
IronPython と C# - @mimura1133 19
推測ありますし。 型付けされているので、静的型付けのひとにも 安心 IronPython と C# - @mimura1133 20
やっぱり僕は C# したい。 C もいいけど、僕の中では遊び道具にしたい! 最近 Python
出てきてる。マクロとかすごく楽そう。 IronPython で、楽しいことしようよ!! C# + IronPython = 新時代。 ほかにも IronRuby とか、IronProlog とかあるよ! IronPython と C# - @mimura1133 21