Ejemplo n.º 1
0
 public CachedCommandInfo(ICilCompilerAware cilCompilerAware, ICilExtension cilExtension)
 {
     _cilCompilerAware = cilCompilerAware;
     _cilExtension = cilExtension;
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Attempts to retrieve the CIL extension associated with this command.
 /// </summary>
 /// <param name = "cilExtension">On success, holds a reference to the CIL extension. Undefined on failure.</param>
 /// <returns>True, on success; false on failure.</returns>
 public bool TryGetCilExtension(out ICilExtension cilExtension)
 {
     cilExtension = _cilExtension;
     return cilExtension != null;
 }