﻿<?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>CS0039</ErrorName>
  <Examples>
    <string>// cs0039.cs: as operator can not convert explicitly from type to type
// line: 8
class A {
        public static void Main ()
        {
		decimal tryDec;
		tryDec = 1234.2345M;

		object a = tryDec as string;
        }
}





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