﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS0023</ErrorName>
  <Examples>
    <string>// cs0023-2.cs: Operator `+' cannot be applied to operand of type `bool'
// Line : 6

class X {
        static void Main () {
                bool b = +true;
        }
}



</string>
    <string>// cs0023.cs: Operator `~' cannot be applied to operand of type `Foo'
// Line : 10

public class Foo {

	public static void Main ()
	{
		Foo k = new Foo ();
		
		int i = ~ k;

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