﻿<?xml version="1.0" encoding="utf-8"?>
<ErrorDocumentation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ErrorName>CS0053</ErrorName>
  <Examples>
    <string>// cs0053.cs: Inconsistent accessibility. Property type is less accessible than property.
// Line: 11

using System;

class ErrorCS0053 {
	public ErrorCS0053 () {}
}

public class Foo {
	public ErrorCS0053 Property {
		get { return new ErrorCS0053 (); } 
	}

	public static void Main () {
	}

	ErrorCS0053 error;
}

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