##// END OF EJS Templates
small refactoring
small refactoring

File last commit:

r40:fe33f4e02ad5 default
r64:a809805210d1 default
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);
}
}