I want to write simple macro in c#, to be more clear i just want to save some typing when testing (but want use snippets, cause they don't save space). Want to replace reserved keywords with shorter words Example in c++ (return sum):
#define r return
int foo(int i, int c){ r (i + c); }
So the point is to save same space and typing, is there something similar in c#?