Skip to content

Instantly share code, notes, and snippets.

@kou-yeung
Created December 21, 2017 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kou-yeung/6141f20a1ab0fd2d65b50b345b006cc7 to your computer and use it in GitHub Desktop.
Save kou-yeung/6141f20a1ab0fd2d65b50b345b006cc7 to your computer and use it in GitHub Desktop.
// <table> タグの構造を定義する
public class Table
{
public int border; // 属性:border
public TR[] tr; // <tr> タグ一覧
}
// <tr> タグの構造を定義する
public class TR
{
public TD[] td; // <td> タグ一覧
}
// <td> タグの構造を定義する
public class TD
{
public string value; // <td>タグのテキスト
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment