Is it possible to perform a quick code test in VS2010?
For example, I would like to check the code below by simply selecting it in the code editor and execute it by passing variables?
public static int GetInt(object value) { int result; Int32.TryParse(GetString(value), out result); return result; }
c # visual-studio-2010
Tomas
source share