C#구조 노트

589 단어
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace test1
{   //     ,             
    //public                     ,           
    public enum Sex {boy,girl};
    public struct Strcuttest{
        public string nam;
        public Sex Sextest;
    }
    class Program
    {   
        static void Main(string[] args)
        {
           //      
            Strcuttest test;
            test.nam = "hfhsdlhfl";
            test.Sextest = Sex.boy;
             
        }
    }
}

좋은 웹페이지 즐겨찾기