##// END OF EJS Templates
working on linked list
working on linked list

File last commit:

r69:48763f3b5db8 default
r113:468d156e434e v2-1
Show More
IServiceLocator.cs
13 lines | 351 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);
cin
service locator refactoring
r69 bool TryGetService (Type serviceType, out object service);
cin
improved tracing...
r40 }
}