<?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>CS0197</ErrorName>
  <Examples>
    <string>//cs0197.cs: Can not pass fields of a MarshalByRefObject by ref or out
// Line: 15
using System;
class T : MarshalByRefObject {
	int bar;

	static void Foo (ref int i)
	{
	}

	static void Main()
	{
		T t = new T ();
		t.bar = 12;
		Foo (ref t.bar);
	}
}






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