I have this function.\[code\]public void AddVariable( String str){ Response.Write(str); // will write the value of str}\[/code\]But I need to write the name of the string variable that is passed into the function.For example:\[code\]String temp = "test Variable";AddVariable(temp);\[/code\]Here I need to get the name of the variable inside my function, Instead of value.ie, I need to get 'temp' inside my function, Instead of 'test Variable'.Is it possbile?