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
24
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Iron python と c sharp
Satoshi MIMURA
October 09, 2011
More Decks by Satoshi MIMURA
See All by Satoshi MIMURA
Inside wsl
mimura1133
0
30
Edomae 2015 - マルウェアを解析してみよう
mimura1133
0
53
Windows でも TeX 編集がしたい!
mimura1133
0
21
3本指ジェスチャの仮想デスクトップ機能を Windows に実装した話
mimura1133
0
26
Windows のカーネルモードドライバで填まった話
mimura1133
0
26
APASEC 2013 - ROP/JIT を使わずに DEP/ASLR を回避する手法を見てみた。
mimura1133
0
21
マシン語によるコード実行
mimura1133
0
21
Unix と windows 世界の融合
mimura1133
0
25
Windows Phone 7 と XNA の世界
mimura1133
0
19
Other Decks in Programming
See All in Programming
KotlinConf Extended South Korea 2026 Keynote
l2hyunwoo
0
110
「人を評価する AI」の設計と実装
ryoyanara
0
210
仕様駆動開発へのトライを機に チームに適合する手法を模索し続けている話
freee
PRO
0
570
Claude CodeとAgentCore Gatewayを繋ぐ際の認証認可 / Authentication and authorization when connecting Claude Code with AgentCore Gateway
har1101
2
320
メールのエイリアス機能を履き違えない
isshinfunada
0
240
ソフトウェアエンジニアにとっての生成AI - 特性を知って使い倒す / generative ai for software enginner
kishida
5
1.9k
Terraform標準の組織で AWS CDKをどう使うか
mu7889yoon
1
530
琵琶湖の水は止められてもNet--HTTPのリトライは止められない / You might be able to stop the water flow of Lake Biwa but you can't stop Net::HTTP retries
luccafort
PRO
0
790
属人化した知識を、 AIが辿れる地図にする
pkshadeck
PRO
1
190
GDG Korea Android: 2026 I/O Extended ~ What's new in Android development tools
pluu
0
230
<title><a id="</title>君はこのHTMLをパースできるか"></a></title> #雑LT_study
pizzacat83
0
150
言葉の格闘技のススメ~紙とペンと言葉から始める、キャリアの描き方~
progresscicada
2
160
Featured
See All Featured
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
1.8k
Making the Leap to Tech Lead
cromwellryan
135
10k
Why You Should Never Use an ORM
jnunemaker
PRO
61
10k
Navigating Weather and Climate Data
rabernat
0
480
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
技術選定の審美眼(2025年版) / Understanding the Spiral of Technologies 2025 edition
twada
PRO
120
120k
Google's AI Overviews - The New Search
badams
0
1.1k
The Director’s Chair: Orchestrating AI for Truly Effective Learning
tmiket
1
270
Navigating Algorithm Shifts & AI Overviews - #SMXNext
aleyda
1
1.6k
Optimising Largest Contentful Paint
csswizardry
37
3.9k
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
620
Leading Effective Engineering Teams in the AI Era
addyosmani
9
2.3k
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