Last active
May 10, 2016 18:38
-
-
Save codenamejason/87674c9a2d9360307d88c85c110f331a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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