Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/10 19:01:27 (14 years ago)
Author:
gkronber
Message:

Fixed relevant warnings in the plugin infrastructure (didn't fix warnings about XML comments of members that will be removed soon). #915 (Remove warnings from HL 3.3 solution)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/ApplicationManager.cs

    r3046 r3092  
    155155
    156156    /// <summary>
    157     /// Loads assemblies dynamically from a byte array
    158     /// </summary>
    159     /// <param name="plugins">bytearray of all assemblies that should be loaded</param>
     157    /// Loads raw assemblies dynamically from a byte array
     158    /// </summary>
     159    /// <param name="assemblies">bytearray of all raw assemblies that should be loaded</param>
    160160    internal void LoadAssemblies(IEnumerable<byte[]> assemblies) {
    161161      foreach (byte[] asm in assemblies) {
     
    181181    }
    182182    /// <summary>
    183     /// Creates an instance of all types declared in assembly <param name="asm"/> that are subtypes or the same type of the specified type and declared in <paramref name="plugin"/>
     183    /// Creates an instance of all types declared in assembly <paramref name="asm"/> that are subtypes or the same type of the specified <typeparamref name="type"/>.
    184184    /// </summary>
    185185    /// <typeparam name="T">Most general type.</typeparam>
     
    203203    /// Creates an instance of all types that are subtypes or the same type of the specified type
    204204    /// </summary>
    205     /// <typeparam name="type">Most general type.</typeparam>
     205    /// <param name="type">Most general type.</param>
    206206    /// <returns>Enumerable of the created instances.</returns>
    207207    internal static IEnumerable<object> GetInstances(Type type) {
Note: See TracChangeset for help on using the changeset viewer.