Exemplo n.º 1
0
 public CachedCommandInfo(ICilCompilerAware cilCompilerAware, ICilExtension cilExtension)
 {
     _cilCompilerAware = cilCompilerAware;
     _cilExtension = cilExtension;
 }
Exemplo n.º 2
0
 /// <summary>
 ///     Attempts to retrieve the object describing the CIL compiler awareness of the command.
 /// </summary>
 /// <param name = "cilCompilerAware">On success, holds a reference to the object describing the CIL compiler awareness of the command. Undefined on failure.</param>
 /// <returns>True, on success; false on failure</returns>
 public bool TryGetCilCompilerAware(out ICilCompilerAware cilCompilerAware)
 {
     cilCompilerAware = _cilCompilerAware;
     return cilCompilerAware != null;
 }