OneComputeCommon\MyInput.cs
namespace OneComputeCommon
{
/// <summary>
/// An example input class.
/// </summary>
public class MyInput
{
/// <summary>
/// Gets or sets a number to be squared.
/// </summary>
public int NumberToSquare { get; set; }
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public override string ToString()
{
return NumberToSquare.ToString();
}
}
}