<?xml version="1.0" encoding="iso-8859-1"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0079</ErrorName>
  <Examples>
    <string>// cs0079.cs: Events can only appear on the left hand side of += or -=
// Line: 19
 
using System;

class ErrorCS0079 {
	public delegate void Handler ();
	event Handler privateEvent;
	public event Handler OnFoo {
		add {
			privateEvent += value;
		}
		remove {
			privateEvent -= value;
		}
	}
	void Callback() {
		if (privateEvent != null) 
			OnFoo();
	}
	
	public static void Main () {
	}
}

		
</string>
  </Examples>
</ErrorDocumentation>