##// END OF EJS Templates
fixed ArgumentNullException in StartLogicalOperation
fixed ArgumentNullException in StartLogicalOperation

File last commit:

r40:fe33f4e02ad5 default
r42:3ba6778ed336 default
Show More
IServiceLocator.cs
12 lines | 289 B | text/x-csharp | CSharpLexer
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);
}
}