@@ -28,13 +28,13 @@ namespace OnixLabs.Core;
28
28
public static class ObjectExtensions
29
29
{
30
30
/// <summary>
31
- /// Compares the current <see cref="System. IComparable{T}"/> instance with the specified <see cref="System. Object"/> instance.
31
+ /// Compares the current <see cref="IComparable{T}"/> instance with the specified <see cref="Object"/> instance.
32
32
/// </summary>
33
- /// <param name="comparable">The left-hand <see cref="System. IComparable{T}"/> instance to compare.</param>
34
- /// <param name="obj">The right-hand <see cref="System. Object"/> instance to compare.</param>
35
- /// <typeparam name="T">The underlying type of the current <see cref="System. IComparable{T}"/>.</typeparam>
33
+ /// <param name="comparable">The left-hand <see cref="IComparable{T}"/> instance to compare.</param>
34
+ /// <param name="obj">The right-hand <see cref="Object"/> instance to compare.</param>
35
+ /// <typeparam name="T">The underlying type of the current <see cref="IComparable{T}"/>.</typeparam>
36
36
/// <returns>Returns a signed integer that indicates the relative order of the objects being compared.</returns>
37
- /// <exception cref="System. ArgumentException">If the specified object is not <see langword="null"/>, or of the specified type.</exception>
37
+ /// <exception cref="ArgumentException">If the specified object is not <see langword="null"/>, or of the specified type.</exception>
38
38
public static int CompareToObject < T > ( this IComparable < T > comparable , object ? obj )
39
39
{
40
40
if ( obj is null ) return 1 ;
@@ -43,10 +43,10 @@ public static int CompareToObject<T>(this IComparable<T> comparable, object? obj
43
43
}
44
44
45
45
/// <summary>
46
- /// Gets a record-like <see cref="System. String"/> representation of the current <see cref="System. Object"/> instance.
46
+ /// Gets a record-like <see cref="String"/> representation of the current <see cref="Object"/> instance.
47
47
/// </summary>
48
- /// <param name="value">The current <see cref="System. Object"/> instance.</param>
49
- /// <returns>Returns a record-like <see cref="System. String"/> representation of the current <see cref="System. Object"/> instance.</returns>
48
+ /// <param name="value">The current <see cref="Object"/> instance.</param>
49
+ /// <returns>Returns a record-like <see cref="String"/> representation of the current <see cref="Object"/> instance.</returns>
50
50
public static string ToRecordString ( this object value )
51
51
{
52
52
Type type = value . GetType ( ) ;
0 commit comments