Converted all <see paramref="" /> tags into <paramref name="" /> tags as this seems to be the standard method of referring to parameters in .NET XML documentation

git-svn-id: file:///srv/devel/repo-conversion/nusu@89 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2008-08-07 20:01:08 +00:00
parent 7446b6bc9b
commit f2bacc5411

View File

@ -28,14 +28,14 @@ namespace Nuclex.Support {
/// <summary>
/// Searches for the first occurence of a character other than the characters
/// listed in the <see paramref="anyNotOf" /> parameter
/// listed in the <<paramref name="anyNotOf" /> parameter
/// </summary>
/// <param name="haystack">String that will be scanned in</param>
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
/// <returns>
/// The index of the first occurence of a character not in the
/// <see paramref="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <see paramref="anyNotOf" /> array.
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <paramref name="anyNotOf" /> array.
/// </returns>
public static int IndexNotOfAny(string haystack, char[] anyNotOf) {
return IndexNotOfAny(haystack, anyNotOf, 0, haystack.Length);
@ -43,7 +43,7 @@ namespace Nuclex.Support {
/// <summary>
/// Searches for the first occurence of a character other than the characters
/// listed in the <see paramref="anyNotOf" /> parameter
/// listed in the <paramref name="anyNotOf" /> parameter
/// </summary>
/// <param name="haystack">String that will be scanned in</param>
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
@ -52,8 +52,8 @@ namespace Nuclex.Support {
/// </param>
/// <returns>
/// The index of the first occurence of a character not in the
/// <see paramref="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <see paramref="anyNotOf" /> array.
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <paramref name="anyNotOf" /> array.
/// </returns>
public static int IndexNotOfAny(string haystack, char[] anyNotOf, int startIndex) {
return IndexNotOfAny(haystack, anyNotOf, startIndex, haystack.Length - startIndex);
@ -61,7 +61,7 @@ namespace Nuclex.Support {
/// <summary>
/// Searches for the first occurence of a character other than the characters
/// listed in the <see paramref="anyNotOf" /> parameter
/// listed in the <paramref name="anyNotOf" /> parameter
/// </summary>
/// <param name="haystack">String that will be scanned in</param>
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
@ -71,8 +71,8 @@ namespace Nuclex.Support {
/// <param name="count">Number of characters in the haystack to scan</param>
/// <returns>
/// The index of the first occurence of a character not in the
/// <see paramref="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <see paramref="anyNotOf" /> array.
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <paramref name="anyNotOf" /> array.
/// </returns>
public static int IndexNotOfAny(
string haystack, char[] anyNotOf, int startIndex, int count
@ -96,14 +96,14 @@ namespace Nuclex.Support {
/// <summary>
/// Searches backwards for the first occurence of a character other than the
/// characters listed in the <see pref="anyNotOf" /> parameter
/// characters listed in the <paramref name="anyNotOf" /> parameter
/// </summary>
/// <param name="haystack">String that will be scanned in</param>
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
/// <returns>
/// The index of the first occurence of a character not in the
/// <see paramref="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <see paramref="anyNotOf" /> array.
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <paramref name="anyNotOf" /> array.
/// </returns>
public static int LastIndexNotOfAny(string haystack, char[] anyNotOf) {
return LastIndexNotOfAny(haystack, anyNotOf, haystack.Length - 1, haystack.Length);
@ -111,7 +111,7 @@ namespace Nuclex.Support {
/// <summary>
/// Searches backwards for the first occurence of a character other than the
/// characters listed in the <see paramref="anyNotOf" /> parameter
/// characters listed in the <paramref name="anyNotOf" /> parameter
/// </summary>
/// <param name="haystack">String that will be scanned in</param>
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
@ -120,8 +120,8 @@ namespace Nuclex.Support {
/// </param>
/// <returns>
/// The index of the first occurence of a character not in the
/// <see paramref="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <see paramref="anyNotOf" /> array.
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <paramref name="anyNotOf" /> array.
/// </returns>
public static int LastIndexNotOfAny(string haystack, char[] anyNotOf, int startIndex) {
return LastIndexNotOfAny(haystack, anyNotOf, startIndex, startIndex + 1);
@ -129,7 +129,7 @@ namespace Nuclex.Support {
/// <summary>
/// Searches backwards for the first occurence of a character other than the
/// characters listed in the <see paramref="anyNotOf" /> parameter
/// characters listed in the <paramref name="anyNotOf" /> parameter
/// </summary>
/// <param name="haystack">String that will be scanned in</param>
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
@ -139,8 +139,8 @@ namespace Nuclex.Support {
/// <param name="count">Number of characters in the haystack to scan</param>
/// <returns>
/// The index of the first occurence of a character not in the
/// <see paramref="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <see paramref="anyNotOf" /> array.
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
/// present in the <paramref name="anyNotOf" /> array.
/// </returns>
public static int LastIndexNotOfAny(
string haystack, char[] anyNotOf, int startIndex, int count