Click or drag to resize
weroSoft AG, Software
TypeManagerHelperAddMessage Method
The documentation is integral part of the weroSoft product documentation. This part is intended to be used by developers only.
Adds a message to the resolver message collection.

Namespace:  WeroSoft.ComponentModel.TypeResolving
Assembly:  WeroSoft.Core.Library (in WeroSoft.Core.Library.dll) Version: 3.0 Pre-Release
Syntax
C#
public static void AddMessage(
	this IEnumerable<string> stringCollection,
	string message,
	params Object[] parameters
)

Parameters

stringCollection
Type: System.Collections.GenericIEnumerableString
String collection to add the message to.
message
Type: SystemString
Message to be added.
parameters
Type: SystemObject
Parameters to be used for string injections using string.Format().

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableString. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also