Click here to Skip to main content
15,884,078 members
Articles / Desktop Programming / Windows Forms

Leitner Box with C#

Rate me:
Please Sign up or sign in to vote.
4.84/5 (45 votes)
22 Mar 2010GPL32 min read 141.1K   7K   108  
For easy learning (specially for learning a foreign language) you can use Leitner Box
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using System.Windows.Forms;

namespace Leitner_Box
{
    public static class Variables
    {
        public static XDocument xDocument;
        public static string xmlFileName = "";
        public static string usersFolder = Application.StartupPath + "\\users\\";
        public readonly static string title = "Leitner Box --> ";
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions