FromClrType() приватный Метод

Creates CodeType from the CLR type.
private FromClrType ( Microsoft clrType ) : CodeType
clrType Microsoft The CLR type.
Результат CodeType
Пример #1
0
 /// <summary>
 /// Creates CodeType from the CLR type.
 /// </summary>
 /// <param name="clrType">The CLR type.</param>
 internal CodeType FromClrType(IClrType clrType)
 {
     return(Process.FromClrType(clrType));
 }
Пример #2
0
 /// <summary>
 /// Creates CodeType from the CLR type.
 /// </summary>
 /// <param name="clrType">The CLR type.</param>
 internal CodeType FromClrType(Microsoft.Diagnostics.Runtime.ClrType clrType)
 {
     return(Process.FromClrType(clrType));
 }