c# - Can I 'rename' an external exception class? -
c# - Can I 'rename' an external exception class? -
this question has reply here:
how alias class name in c#? 9 answersi'm using external sdk wants me use
try { ... } grab (ex20301exception) { ... }
i'd rather use
try { ... } grab (customerovercreditlimitexception) { ... }
is there way can accomplish this? or have live comments?
possible duplicate of how alias class name in c#?
in usings...
using customerovercreditlimitexception = the.fully.qualified.namespace.ex20301exception;
c#
Comments
Post a Comment