C#

【C#】拡張メソッドについてのメモ

拡張メソッドについて 書き方 文字列を列挙型に変換する拡張メソッドの例 public enum Weapon { NONE = -1, HINOKINO_BOU, IRON_SWORD, EXCALIBUR, } public static class StringExtension { public static Weapon ToWeapon(this string self) { switch (sel…

【VSCode】VSCode+C#を利用しているときに出てくる警告を消す

VSCode + Unityを利用しているときに出てくるこれ↓を非表示にする Some projects have trouble loading. please review the output for more details. VSCodeのsetting.jsonに以下を追加する "omnisharp.disableMSBuildDiagnosticWarning": true 何故か日本…