Ejemplo n.º 1
0
 public void Deconstruct(out LoquiInterfaceDefinitionType type, out string @interface, out string escapedInterface)
 {
     type             = Type;
     @interface       = Interface;
     escapedInterface = EscapedInterface;
 }
Ejemplo n.º 2
0
 public InterfaceDeclaration(LoquiInterfaceDefinitionType type, string interfaceStr)
 {
     Type      = type;
     Interface = interfaceStr;
 }
Ejemplo n.º 3
0
 public AspectInterfaceData(LoquiInterfaceDefinitionType type, string @interface)
 {
     Type             = type;
     Interface        = @interface;
     EscapedInterface = @interface.Replace("<", "&lt;").Replace(">", "&gt;");
 }