using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CSharpHtmlFormatterLang.Parser
{
/*
* Test.cs provides a simple class used to test the HTML formatting
* of C# Code by my little tool.
*
* This class is provided as is and no warranty is implied.
*
*/
public class Test
{
private String x = "apple";
private String y = "";
private int z = 100;
private bool m = false;
private double n = 100;
// At this point the class is fairly vanilla.
// That doesn't change in the future. :-)
/// <summary>
/// Property for the n member of type double
///
/// </summary>
public double N
{
get { return n; }
set { n = value; }
}
/// <summary>
/// Accessor Mutator for the m member of type <class>
/// </summary>
public bool M
{
get { return m; }
set { m = value; }
}
/// <summary>
/// Property for the z member of type int
///
/// </summary>
public int Z
{
get { return z; } // Getter
// Middle
set { z = value; } // Setter
}
/// <summary>
/// Accessor Mutator for the x member of type String
/// </summary>
public String X
{
get { return x; }
set { x = value ?? ""; }
}
/// <summary>
/// Accessor Mutator for the y member of type String
/// </summary>
public String Y
{
get { return y; }
set { y = value ?? ""; }
}
}
}