AssemblyReference.Implicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified assembly reference.
Overloads
Implicit(Assembly to AssemblyReference) |
Converts the specified assembly reference. |
Implicit(AssemblyName to AssemblyReference) |
Converts the specified assembly reference with a specific assembly name. |
Implicit(Assembly to AssemblyReference)
Converts the specified assembly reference.
public:
static operator System::Activities::Expressions::AssemblyReference ^(System::Reflection::Assembly ^ assembly);
public static implicit operator System.Activities.Expressions.AssemblyReference (System.Reflection.Assembly assembly);
static member op_Implicit : System.Reflection.Assembly -> System.Activities.Expressions.AssemblyReference
Public Shared Widening Operator CType (assembly As Assembly) As AssemblyReference
Parameters
- assembly
- Assembly
The assembly.
Returns
The instance AssemblyReference object.
Applies to
Implicit(AssemblyName to AssemblyReference)
Converts the specified assembly reference with a specific assembly name.
public:
static operator System::Activities::Expressions::AssemblyReference ^(System::Reflection::AssemblyName ^ assemblyName);
public static implicit operator System.Activities.Expressions.AssemblyReference (System.Reflection.AssemblyName assemblyName);
static member op_Implicit : System.Reflection.AssemblyName -> System.Activities.Expressions.AssemblyReference
Public Shared Widening Operator CType (assemblyName As AssemblyName) As AssemblyReference
Parameters
- assemblyName
- AssemblyName
The assembly name.
Returns
An instance AssemblyReference object.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.