Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Last active May 10, 2016 18:38
Show Gist options
  • Save codenamejason/87674c9a2d9360307d88c85c110f331a to your computer and use it in GitHub Desktop.
Save codenamejason/87674c9a2d9360307d88c85c110f331a to your computer and use it in GitHub Desktop.
/// <summary>
/// GetData - To get values
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public string GetData(int value)
{
if (value != null)
{
value = value * 10;
}
return string.Format("You entered: {0}", value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment