INNER CODE UNIT · C#

MethodParameter

ArcadeMakerSources/ArcadeMaker · src/ArcadeMaker.IDE/CodeChecker.cs:513

        public class MethodParameter : CSItem
        {
            public string Name, Type;
            public bool Ref, Out, HasDefaultValue;
            public Value DefaultValue = null;
        }

        public class Value : CSItem
        {
            public string Type;
        }

        public class BoolValue : Value
        {
            public BoolValue()
            {
                base.Type = "bool";
            }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…