123456789101112131415161718192021 |
- using System;
- namespace Logger
- {
-
-
-
- public interface ILogger
- {
-
-
-
-
-
-
-
-
-
- void Logger(Type type, string desc, Action tryHandel, Action<Exception> catchHandel = null, Action finallHandel = null, ErrorHandel errorHandel = ErrorHandel.Throw);
- }
- }
|