| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace UAS_Web.tool
- {
- class SubBoundObject
- {
- public string SimpleProperty { get; set; }
- public SubBoundObject()
- {
- SimpleProperty = "This is a very simple property.";
- }
- public string GetMyType()
- {
- return "My Type is " + GetType();
- }
- public string EchoSimpleProperty()
- {
- return SimpleProperty;
- }
- }
- }
|