﻿<?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>CS1644</ErrorName>
  <Examples>
    <string>// cs1644-2.cs: Feature `access modifiers on properties' cannot be used because it is not part of the standardized ISO C# language specification
// Line: 13
// Compiler options: -langversion:ISO-1

class Class {

	public int Count {

		get {
			return 0;
		}

		protected set {
		}
	}
}
</string>
    <string>// cs1644-3.cs: Feature `fixed size buffers' cannot be used because it is not part of the standardized ISO C# language specification
// Line: 6
// Compiler options: -langversion:ISO-1

struct S {
    fixed long buffer [5];
}
</string>
    <string>// cs1644.cs: Feature `static classes' cannot be used because it is not part of the standardized ISO C# language specification
// Line: 5
// Compiler options: -langversion:ISO-1

static class Class {
}</string>
  </Examples>
</ErrorDocumentation>