Answers for "how to use static string c#"

C#
1

c# public static string

public static string saytest = "test";

private static void Main()
{
  Console.WriteLine(saytest);
}
Posted by: Guest on March-02-2020

C# Answers by Framework

Browse Popular Code Answers by Language