「C#」静的クラス(static class)を使うサンプル

2020年11月2日

構文
public static class クラス名{
some code
}
サンプルコード

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
using System;
namespace ProjectAbc
{
class DemoArk
{
static void Main()
{
Console.WriteLine(CftDemo.emp);
CftDemo.TestFunc();
}
}
public static class CftDemo
{
public static int emp = 666;
public static void TestFunc()
{
Console.WriteLine("777");
}
}
}
using System; namespace ProjectAbc { class DemoArk { static void Main() { Console.WriteLine(CftDemo.emp); CftDemo.TestFunc(); } } public static class CftDemo { public static int emp = 666; public static void TestFunc() { Console.WriteLine("777"); } } }
using System;

namespace ProjectAbc
{
      class DemoArk
      {
            static void Main()
            {
                  Console.WriteLine(CftDemo.emp);
                  CftDemo.TestFunc(); 
            }
      }
      public static class CftDemo
      {
            public static int emp = 666;
            public static void TestFunc()
            {
                  Console.WriteLine("777");
            }
      }
}

結果
666
777

C#

Posted by arkgame