##// END OF EJS Templates
Interactive tracing...
Interactive tracing Improved working with tracing contexts

File last commit:

r40:fe33f4e02ad5 default
r48:d9d794b61bb9 interactive logger
Show More
IServiceLocator.cs
12 lines | 289 B | text/x-csharp | CSharpLexer
/ Implab / IServiceLocator.cs
cin
improved tracing...
r40 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab {
public interface IServiceLocator: IServiceProvider {
T GetService<T>();
bool TryGetService<T>(out T service);
}
}