How to access a function with synonyms in intellisense help in C #?

Is there a way to declare a function in a class and then access multiple synonyms?

I created a function named Edit()in my C # class. Is it possible to access this function with the following names using Visual Studio intellisense?

EditChanges()
Update()
+4
source share

All Articles