This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | テスト更新 | |
| ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ | |
| フォントの標準設定 | |
| ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ | |
| ▼2020年定番のフォント | |
| font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ", Meiryo, sans-serif; | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ○JavaScript | |
| ○DOM | |
| HTML構造をJSから制御できるように、ツリー構造で表現したオブジェクト | |
| ○仮想DOM | |
| JSから直接DOMを制御せず、仮想DOMを通じてDOMを操作する手法 | |
| // ノードを操作するオブジェクト | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace XmlTest | |
| { | |
| class XmlTest | |
| { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace XmlTest | |
| { | |
| /// <summary> | |
| /// ドメイン一覧(ルート) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8"?> | |
| <Domains> | |
| <Domain name="ドメインその1"> | |
| <Files> | |
| <File name="XML.csv"> | |
| <item name="AAA" value="true" /> | |
| <item name="BBB" value="true"/> | |
| <item name="CCC" value="false"/> | |
| </File> | |
| </Files> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?xml version="1.0" encoding="utf-8" ?> | |
| <configuration> | |
| <!-- log4netを使うため必要な宣言--> | |
| <configSections> | |
| <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /> | |
| </configSections> | |
| <startup> | |
| <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /> | |
| </startup> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # 仕様 | |
| # ・1行目がテーブル名 | |
| # ・2行目がデータのヘッダ | |
| # ・3行目からデータ | |
| import os | |
| import csv | |
| from pathlib import Path | |
| # カレントディレクトリにあるcsvファイルを全部取得 |