Net Core教程

asp.net代码练习 work093

本文主要是介绍asp.net代码练习 work093,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

animal.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace work093
{
    public class Animal
    {
        private string _type;
        public void SetType(string type)
        {
            this._type = type;
        }


    }
}

webform1.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace work093
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            work093.Animal bird = new Animal();
            bird.SetType("BIRD");

        }
    }
}

这篇关于asp.net代码练习 work093的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!