ILGenerator.EmitWriteLine Method (FieldInfo)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Emits the Microsoft intermediate language (MSIL) necessary to call Console.WriteLine with the given field.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- fld
- Type: System.Reflection.FieldInfo
The field whose value is to be written to the console.
| Exception | Condition |
|---|---|
| ArgumentException | There is no overload of the Console.WriteLine method that accepts the type of the specified field. |
| ArgumentNullException | fld is Nothing. |
| NotSupportedException | The type of the field is a dynamic type, which is not supported. |
In Windows Phone applications, there is no practical use for the EmitWriteLine method.
The type of fld must match the parameter type of an overload of the Console.WriteLine method.