##// END OF EJS Templates
Adde workaround to the behaviour of the logical operations stack in conjuction...
Adde workaround to the behaviour of the logical operations stack in conjuction with async/await methods

File last commit:

r250:9f63dade3a40 v3
r255:b00441e04738 v3
Show More
IServiceLocator.cs
13 lines | 362 B | text/x-csharp | CSharpLexer
cin
Working on runnable component
r250 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Implab.Components {
public interface IServiceLocator: IServiceProvider {
T GetService<T>();
bool TryGetService<T>(out T service);
bool TryGetService (Type serviceType, out object service);
}
}