Skip to content

Commit

Permalink
reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
yibei333 committed Aug 10, 2024
1 parent ff75bf4 commit 2bfcbfc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 331 deletions.
2 changes: 1 addition & 1 deletion src/SharpDevLib/Extensions/ReflectionExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace SharpDevLib;
public static class ReflectionExtension
{
/// <summary>
/// 获取类型定义名称(支持泛型)
/// 获取类型定义名称(支持泛型,不支持嵌套类型)
/// </summary>
/// <param name="type">类型</param>
/// <param name="isFullName">是否全名</param>
Expand Down
4 changes: 2 additions & 2 deletions src/SharpDevLib/Model/Request/PageRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public PageRequest() : this(0, 20)
/// <summary>
/// 实例化分页request
/// </summary>
/// <param name="index">索引(当前位置),默认为1</param>
/// <param name="index">索引(当前位置),默认为0</param>
/// <param name="size">每页数据条数</param>
/// <exception cref="ArgumentException">index和size需要大于等于0,否则引发异常</exception>
public PageRequest(int index, int size)
Expand All @@ -28,7 +28,7 @@ public PageRequest(int index, int size)
}

/// <summary>
/// 索引(当前位置),默认为1
/// 索引(当前位置),默认为0
/// </summary>
public int Index { get; set; }

Expand Down
328 changes: 0 additions & 328 deletions src/SharpDevLib/Test.cs

This file was deleted.

0 comments on commit 2bfcbfc

Please sign in to comment.