2015-12-01から1ヶ月間の記事一覧

Swiftのif, for while

//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" //if let score = 70 if score>=80 { print ("合格です!") } else { print("不合格〜!") } print("\(score)点でした。") //switch let color = "blue" …

C# 指定したプロセス名のprocessを取得し、稼働時間、開始時間、プロセスIDを表示する。

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Diagnostics; namespace ProcessKiller { pub…

C# Helperクラスを使って、XMLにノードを追加する。

XmlHelper.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml; namespace XmlOperator { class XmlHelper { public static XmlNode AddElement(string tagName, s…