using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ConsoleApp1
{
public class ConsolePrinter
{
public static object PrintValue;
public ConsolePrinter Value(string value)
{
PrintValue = value;
return this;
}
public override string ToString()
{
Console.WriteLine(PrintValue);
return null;
}
}
}

![[SOLVED] CS using System;](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[SOLVED] Naughty Receiver - Reliable Data Transfer](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.