Log.log(work)

いろんな作業メモ

列挙体・・・?

おどろき

列挙体に変数を宣言しているのが不思議に見えてしまった。
これって普通なのかしら。
Javaで列挙体って定数クラスみたいな使い方しかしたことなかったから、こういう書き方が不思議に見える。

// UITestPropertyAttributes はenum
UITestPropertyAttributes read = UITestPropertyAttributes.Readable | UITestPropertyAttributes.DoNotGenerateProperties;
UITestPropertyAttributes readWrite = read | UITestPropertyAttributes.Writable;