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:
parent
7446b6bc9b
commit
f2bacc5411
|
@ -28,14 +28,14 @@ namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Searches for the first occurence of a character other than the characters
|
/// 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>
|
/// </summary>
|
||||||
/// <param name="haystack">String that will be scanned in</param>
|
/// <param name="haystack">String that will be scanned in</param>
|
||||||
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The index of the first occurence of a character not in the
|
/// 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
|
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
|
||||||
/// present in the <see paramref="anyNotOf" /> array.
|
/// present in the <paramref name="anyNotOf" /> array.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public static int IndexNotOfAny(string haystack, char[] anyNotOf) {
|
public static int IndexNotOfAny(string haystack, char[] anyNotOf) {
|
||||||
return IndexNotOfAny(haystack, anyNotOf, 0, haystack.Length);
|
return IndexNotOfAny(haystack, anyNotOf, 0, haystack.Length);
|
||||||
|
@ -43,7 +43,7 @@ namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Searches for the first occurence of a character other than the characters
|
/// 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>
|
/// </summary>
|
||||||
/// <param name="haystack">String that will be scanned in</param>
|
/// <param name="haystack">String that will be scanned in</param>
|
||||||
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
||||||
|
@ -52,8 +52,8 @@ namespace Nuclex.Support {
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The index of the first occurence of a character not in the
|
/// 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
|
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
|
||||||
/// present in the <see paramref="anyNotOf" /> array.
|
/// present in the <paramref name="anyNotOf" /> array.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public static int IndexNotOfAny(string haystack, char[] anyNotOf, int startIndex) {
|
public static int IndexNotOfAny(string haystack, char[] anyNotOf, int startIndex) {
|
||||||
return IndexNotOfAny(haystack, anyNotOf, startIndex, haystack.Length - startIndex);
|
return IndexNotOfAny(haystack, anyNotOf, startIndex, haystack.Length - startIndex);
|
||||||
|
@ -61,7 +61,7 @@ namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Searches for the first occurence of a character other than the characters
|
/// 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>
|
/// </summary>
|
||||||
/// <param name="haystack">String that will be scanned in</param>
|
/// <param name="haystack">String that will be scanned in</param>
|
||||||
/// <param name="anyNotOf">Characters to not look for in the scanned string</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>
|
/// <param name="count">Number of characters in the haystack to scan</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The index of the first occurence of a character not in the
|
/// 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
|
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
|
||||||
/// present in the <see paramref="anyNotOf" /> array.
|
/// present in the <paramref name="anyNotOf" /> array.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public static int IndexNotOfAny(
|
public static int IndexNotOfAny(
|
||||||
string haystack, char[] anyNotOf, int startIndex, int count
|
string haystack, char[] anyNotOf, int startIndex, int count
|
||||||
|
@ -96,14 +96,14 @@ namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Searches backwards for the first occurence of a character other than the
|
/// 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>
|
/// </summary>
|
||||||
/// <param name="haystack">String that will be scanned in</param>
|
/// <param name="haystack">String that will be scanned in</param>
|
||||||
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The index of the first occurence of a character not in the
|
/// 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
|
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
|
||||||
/// present in the <see paramref="anyNotOf" /> array.
|
/// present in the <paramref name="anyNotOf" /> array.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public static int LastIndexNotOfAny(string haystack, char[] anyNotOf) {
|
public static int LastIndexNotOfAny(string haystack, char[] anyNotOf) {
|
||||||
return LastIndexNotOfAny(haystack, anyNotOf, haystack.Length - 1, haystack.Length);
|
return LastIndexNotOfAny(haystack, anyNotOf, haystack.Length - 1, haystack.Length);
|
||||||
|
@ -111,7 +111,7 @@ namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Searches backwards for the first occurence of a character other than the
|
/// 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>
|
/// </summary>
|
||||||
/// <param name="haystack">String that will be scanned in</param>
|
/// <param name="haystack">String that will be scanned in</param>
|
||||||
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
/// <param name="anyNotOf">Characters to not look for in the scanned string</param>
|
||||||
|
@ -120,8 +120,8 @@ namespace Nuclex.Support {
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The index of the first occurence of a character not in the
|
/// 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
|
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
|
||||||
/// present in the <see paramref="anyNotOf" /> array.
|
/// present in the <paramref name="anyNotOf" /> array.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public static int LastIndexNotOfAny(string haystack, char[] anyNotOf, int startIndex) {
|
public static int LastIndexNotOfAny(string haystack, char[] anyNotOf, int startIndex) {
|
||||||
return LastIndexNotOfAny(haystack, anyNotOf, startIndex, startIndex + 1);
|
return LastIndexNotOfAny(haystack, anyNotOf, startIndex, startIndex + 1);
|
||||||
|
@ -129,7 +129,7 @@ namespace Nuclex.Support {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Searches backwards for the first occurence of a character other than the
|
/// 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>
|
/// </summary>
|
||||||
/// <param name="haystack">String that will be scanned in</param>
|
/// <param name="haystack">String that will be scanned in</param>
|
||||||
/// <param name="anyNotOf">Characters to not look for in the scanned string</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>
|
/// <param name="count">Number of characters in the haystack to scan</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// The index of the first occurence of a character not in the
|
/// 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
|
/// <paramref name="anyNotOf" /> array or -1 if all characters in the string were
|
||||||
/// present in the <see paramref="anyNotOf" /> array.
|
/// present in the <paramref name="anyNotOf" /> array.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
public static int LastIndexNotOfAny(
|
public static int LastIndexNotOfAny(
|
||||||
string haystack, char[] anyNotOf, int startIndex, int count
|
string haystack, char[] anyNotOf, int startIndex, int count
|
||||||
|
|
Loading…
Reference in New Issue
Block a user