/// <summary> /// Initialises a new <see cref="CSharpMember" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpMember(GeneratedType type) { _type = type; }
/// <summary> /// Initialises a new <see cref="CSharpImplementationProperty" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpImplementationProperty(GeneratedType type) : base(type) { }
/// <summary> /// Initialises a new <see cref="CSharpImplementationMethod" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpImplementationMethod(GeneratedType type) : base(type) { }
/// <summary> /// Initialises a new <see cref="CSharpField" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpField(GeneratedType type) : base(type) { }
/// <summary> /// Initialises a new <see cref="CSharpMethod" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpMethod(GeneratedType type) : base(type) { }
/// <summary> /// Initialises a new <see cref="CSharpConstructor" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpConstructor(GeneratedType type) : base(type) { }
/// <summary> /// Initialises a new <see cref="CSharpProperty" /> instance /// </summary> /// <param name="type"> /// Sets the generated runtime type, in which this member is defined. /// </param> public CSharpProperty(GeneratedType type) : base(type) { }