S
Sanjay Pais
Any one played around with snippets should be able to help me 
I need to Add a custom code Snippet and need the value of the variable
ProcedureName to be set to the name of the class. I know I am being lazy
public ovevride void Lock(string str1, string str2){
//set value of procedure name for error handling
ProcedureName="Lock";
try{
//add custom code here
}
catch (Exception exp){
PassOnToLog(ProcedureName, ex);
throw(ex);
}
}
Thanks in advance
Sanjay

I need to Add a custom code Snippet and need the value of the variable
ProcedureName to be set to the name of the class. I know I am being lazy

public ovevride void Lock(string str1, string str2){
//set value of procedure name for error handling
ProcedureName="Lock";
try{
//add custom code here
}
catch (Exception exp){
PassOnToLog(ProcedureName, ex);
throw(ex);
}
}
Thanks in advance
Sanjay