PartAngleDisplay.ToolbarTypes.getProperty C# (CSharp) 메소드

getProperty() 정적인 개인적인 메소드

static private getProperty ( Type type, string name ) : PropertyInfo
type System.Type
name string
리턴 System.Reflection.PropertyInfo
        internal static PropertyInfo getProperty(Type type, string name)
        {
            return type.GetProperty(name, BindingFlags.Public | BindingFlags.Instance);
        }

Usage Example

예제 #1
0
        public GameScenesVisibility(params GameScenes[] gameScenes)
        {
            Type gameScenesVisibilityType = ToolbarTypes.getType("Toolbar.GameScenesVisibility");

            realGameScenesVisibility = Activator.CreateInstance(gameScenesVisibilityType, new object[] { gameScenes });
            visibleProperty          = ToolbarTypes.getProperty(gameScenesVisibilityType, "Visible");
        }
All Usage Examples Of PartAngleDisplay.ToolbarTypes::getProperty