/// <summary>
 /// Create an <see cref="EventRef"/>.
 /// </summary>
 public EventRef(EventDecl declaration)
     : base(declaration, false)
 {
 }
Beispiel #2
0
 /// <summary>
 /// Create an <see cref="AddAssign"/> operator.
 /// </summary>
 public AddAssign(EventDecl left, Expression right)
     : base(left.CreateRef(), right)
 {
 }
 /// <summary>
 /// Create an <see cref="EventRef"/>.
 /// </summary>
 public EventRef(EventDecl declaration, bool isFirstOnLine)
     : base(declaration, isFirstOnLine)
 {
 }