Skip to content

Commit

Permalink
make IsReaconlyList and IsReadOnlyDictionary public in CSharpType
Browse files Browse the repository at this point in the history
  • Loading branch information
live1206 committed Jan 3, 2025
1 parent b2aebe9 commit 99e6d71
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ public class CSharpType
public bool IsReadOnlyMemory => _isReadOnlyMemory ??= TypeIsReadOnlyMemory();
public bool IsList => _isList ??= TypeIsList();
public bool IsArray => _isArray ??= TypeIsArray();
internal bool IsReadOnlyList => _isReadOnlyList ??= TypeIsReadOnlyList();
public bool IsReadOnlyList => _isReadOnlyList ??= TypeIsReadOnlyList();
internal bool IsReadWriteList => _isReadWriteList ??= TypeIsReadWriteList();
public bool IsDictionary => _isDictionary ??= TypeIsDictionary();
internal bool IsReadOnlyDictionary => _isReadOnlyDictionary ??= TypeIsReadOnlyDictionary();
public bool IsReadOnlyDictionary => _isReadOnlyDictionary ??= TypeIsReadOnlyDictionary();
internal bool IsReadWriteDictionary => _isReadWriteDictionary ??= TypeIsReadWriteDictionary();
internal bool IsIEnumerableOfT => _isIEnumerableOfT ??= TypeIsIEnumerableOfT();
internal bool IsIAsyncEnumerableOfT => _isIAsyncEnumerableOfT ??= TypeIsIAsyncEnumerableOfT();
Expand Down

0 comments on commit 99e6d71

Please sign in to comment.