)>}]
شركة التطبيقات المتكاملة لتصميم وبرمجة البرمجيات الخاصة ش.ش.و.
Integrated Applications Programming Company
Skip Navigation LinksHome » Code Library » Kanji

Public general use code classes and xml files that we've compiled and used over the years:

Kanji support class

   1:  using System;
   2:  using System.Collections.Generic;
   3:  using System.Linq;
   4:  using System.Web;
   5:  using System.Xml.Linq;
   6:   
   7:  namespace Ia.Learning.Cl.Model
   8:  {
   9:      ////////////////////////////////////////////////////////////////////////////
  10:   
  11:      /// <summary publish="true">
  12:      /// Kanji support class
  13:      /// </summary>
  14:      /// <value>
  15:      /// https://msdn.microsoft.com/en-us/library/z1hkazw7(v=vs.100).aspx
  16:      /// </value>
  17:      /// <remarks> 
  18:      /// Copyright © 2008-2016 Jasem Y. Al-Shamlan (info@ia.com.kw), Integrated Applications - Kuwait. All Rights Reserved.
  19:      ///
  20:      /// This library is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
  21:      /// the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  22:      ///
  23:      /// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  24:      /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  25:      /// 
  26:      /// You should have received a copy of the GNU General Public License along with this library. If not, see http://www.gnu.org/licenses.
  27:      /// 
  28:      /// Copyright notice: This notice may not be removed or altered from any source distribution.
  29:      /// </remarks> 
  30:      public partial class Kanji
  31:      {
  32:          // <char id="1" wiki_id="1" name="一" grade="1" wiki_en="one" en="one" stroke="1" onyomi_ja="イチ、イツ" onyomi_en="ichi, itsu" kunyomi_ja="ひと、ひと-つ" kunyomi_en="hito, hito-tsu" />
  33:   
  34:          /// <summary/>
  35:          public int Id { get; set; }
  36:   
  37:          /// <summary/>
  38:          public int WikiId { get; set; }
  39:   
  40:          /// <summary/>
  41:          public string Name { get; set; }
  42:   
  43:          /// <summary/>
  44:          public int Grade { get; set; }
  45:   
  46:          /// <summary/>
  47:          public string WikiEnglish { get; set; }
  48:   
  49:          /// <summary/>
  50:          public string English { get; set; }
  51:   
  52:          /// <summary/>
  53:          public int Stroke { get; set; }
  54:   
  55:          /// <summary/>
  56:          public string JapaneseOnyomi { get; set; }
  57:   
  58:          /// <summary/>
  59:          public string EnglishOnyomi { get; set; }
  60:   
  61:          /// <summary/>
  62:          public string JapaneseKunyomi { get; set; }
  63:   
  64:          /// <summary/>
  65:          public string EnglishKunyomi { get; set; }
  66:      }
  67:   
  68:      ////////////////////////////////////////////////////////////////////////////
  69:      ////////////////////////////////////////////////////////////////////////////
  70:  }