Hohoho
This commit is contained in:
@@ -5,7 +5,7 @@ using System.Text;
|
|||||||
|
|
||||||
namespace First_week
|
namespace First_week
|
||||||
{
|
{
|
||||||
internal static class CollectionUtils
|
public static class CollectionUtils
|
||||||
{
|
{
|
||||||
public static bool IsNullOrEmpty<T>(this IEnumerable<T> collection)
|
public static bool IsNullOrEmpty<T>(this IEnumerable<T> collection)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
namespace First_week
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace First_week
|
||||||
{
|
{
|
||||||
internal class StringUtils
|
public class StringUtils
|
||||||
{
|
{
|
||||||
public static bool IsPalindrome(string s)
|
public static bool IsPalindrome(string s)
|
||||||
{
|
{
|
||||||
|
|||||||
2
User.cs
2
User.cs
@@ -7,7 +7,7 @@ using System.Text;
|
|||||||
|
|
||||||
namespace First_week
|
namespace First_week
|
||||||
{
|
{
|
||||||
internal class User
|
public class User
|
||||||
{
|
{
|
||||||
public Guid Id { get; }
|
public Guid Id { get; }
|
||||||
public string Name { get; private set; }
|
public string Name { get; private set; }
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ using System.Text;
|
|||||||
|
|
||||||
namespace First_week
|
namespace First_week
|
||||||
{
|
{
|
||||||
internal class UserManager
|
public class UserManager
|
||||||
{
|
{
|
||||||
public List <User> Registory = new();
|
public List <User> Registory = new();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user