RSCG – StaticReflection
RSCG – StaticReflection
name | StaticReflection |
nuget |
https://www.nuget.org/packages/FastStaticReflection/ https://www.nuget.org/packages/FastStaticReflection.CodeGen/ |
link | https://github.com/Cricle/StaticReflection/ |
author | Cricle |
Call prop/methods on classes
This is how you can use StaticReflection .
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 | < Project Sdk = "Microsoft.NET.Sdk" > < PropertyGroup > < OutputType >Exe</ OutputType > < TargetFramework >net7.0</ TargetFramework > < ImplicitUsings >enable</ ImplicitUsings > < Nullable >enable</ Nullable > </ PropertyGroup > < ItemGroup > < PackageReference Include = "FastStaticReflection" Version = "1.0.0-preview.3" /> < PackageReference Include = "FastStaticReflection.CodeGen" Version = "1.0.0-preview.3" /> </ ItemGroup > < PropertyGroup > < EmitCompilerGeneratedFiles >true</ EmitCompilerGeneratedFiles > < CompilerGeneratedFilesOutputPath >$(BaseIntermediateOutputPath)\GX</ CompilerGeneratedFilesOutputPath > </ PropertyGroup > </ Project > |
The code that you will use is
1 2 3 4 5 6 7 8 9 | using StaticReflection; using StaticReflectionDemo; var p = new Person(); PersonReflection.Instance.SetProperty(p, "FirstName" , "Andrei" ); PersonReflection.Instance.SetProperty(p, "LastName" , "Ignat" ); Console.WriteLine(p.Name()); |
01 02 03 04 05 06 07 08 09 10 11 12 13 | using StaticReflection.Annotions; namespace StaticReflectionDemo; [StaticReflection] internal partial class Person { public string FirstName { get ; set ; } public string LastName { get ; set ; } public string Name() { return $ "{FirstName} {LastName}" ; } } |
The code that is generated is
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | // <auto-generated/> #pragma warning disable CS9082 #pragma warning disable CS8669 namespace StaticReflectionDemo { [global::System.CodeDom.Compiler.GeneratedCodeAttribute( "StaticReflection.CodeGen" , "1.0.0" )] [global::System.Diagnostics.DebuggerStepThrough] [global::System.Runtime.CompilerServices.CompilerGenerated] internal sealed class PersonReflection : StaticReflection.ITypeDefine { [global::System.CodeDom.Compiler.GeneratedCodeAttribute( "StaticReflection.CodeGen" , "1.0.0" )] [global::System.Diagnostics.DebuggerStepThrough] [global::System.Runtime.CompilerServices.CompilerGenerated] internal sealed class Person0PReflection : StaticReflection.IMemberInvokeDefine<StaticReflectionDemo.Person, string >, StaticReflection.IPropertyDefine, StaticReflection.IMemberAnonymousInvokeDefine { public static readonly Person0PReflection Instance = new Person0PReflection(); public System.Type DeclareType { get ; } = typeof (StaticReflectionDemo.Person); public System.String Name { get ; } = "FirstName" ; public System.String MetadataName { get ; } = "FirstName" ; public System.Boolean IsVirtual { get ; } = false ; public System.Boolean IsStatic { get ; } = false ; public System.Boolean IsOverride { get ; } = false ; public System.Boolean IsAbstract { get ; } = false ; public System.Boolean IsSealed { get ; } = false ; public System.Boolean IsDefinition { get ; } = true ; public System.Boolean IsExtern { get ; } = false ; public System.Boolean IsImplicitlyDeclared { get ; } = false ; public System.Boolean CanBeReferencedByName { get ; } = true ; public System.Boolean IsPublic { get ; } = true ; public System.Boolean IsPrivate { get ; } = false ; public System.Boolean IsProtected { get ; } = false ; public System.Boolean IsInternal { get ; } = false ; public System.Type PropertyType { get ; } = typeof ( string ); public System.Boolean CanRead { get ; } = true ; public System.Boolean CanWrite { get ; } = true ; public System.Boolean IsRequired { get ; } = false ; public System.Boolean IsWithEvents { get ; } = false ; public System.Boolean ReturnsByRef { get ; } = false ; public System.Boolean ReturnsByRefReadonly { get ; } = false ; public System.Collections.Generic.IReadOnlyList<System.Attribute> GetterAttributes { get ; } = new System.Attribute[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> SetterAttributes { get ; } = new System.Attribute[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> Attributes { get ; } = new System.Attribute[] { }; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public string GetValue(Person instance) { return instance.FirstName; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public void SetValue(Person instance, string value) { instance.FirstName = value; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public void SetValueAnonymous( object instance, object value) { SetValue((StaticReflectionDemo.Person)instance, ( string )value); } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public object GetValueAnonymous( object instance) { return ( object )GetValue((StaticReflectionDemo.Person)instance); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute( "StaticReflection.CodeGen" , "1.0.0" )] [global::System.Diagnostics.DebuggerStepThrough] [global::System.Runtime.CompilerServices.CompilerGenerated] internal sealed class Person1PReflection : StaticReflection.IMemberInvokeDefine<StaticReflectionDemo.Person, string >, StaticReflection.IPropertyDefine, StaticReflection.IMemberAnonymousInvokeDefine { public static readonly Person1PReflection Instance = new Person1PReflection(); public System.Type DeclareType { get ; } = typeof (StaticReflectionDemo.Person); public System.String Name { get ; } = "LastName" ; public System.String MetadataName { get ; } = "LastName" ; public System.Boolean IsVirtual { get ; } = false ; public System.Boolean IsStatic { get ; } = false ; public System.Boolean IsOverride { get ; } = false ; public System.Boolean IsAbstract { get ; } = false ; public System.Boolean IsSealed { get ; } = false ; public System.Boolean IsDefinition { get ; } = true ; public System.Boolean IsExtern { get ; } = false ; public System.Boolean IsImplicitlyDeclared { get ; } = false ; public System.Boolean CanBeReferencedByName { get ; } = true ; public System.Boolean IsPublic { get ; } = true ; public System.Boolean IsPrivate { get ; } = false ; public System.Boolean IsProtected { get ; } = false ; public System.Boolean IsInternal { get ; } = false ; public System.Type PropertyType { get ; } = typeof ( string ); public System.Boolean CanRead { get ; } = true ; public System.Boolean CanWrite { get ; } = true ; public System.Boolean IsRequired { get ; } = false ; public System.Boolean IsWithEvents { get ; } = false ; public System.Boolean ReturnsByRef { get ; } = false ; public System.Boolean ReturnsByRefReadonly { get ; } = false ; public System.Collections.Generic.IReadOnlyList<System.Attribute> GetterAttributes { get ; } = new System.Attribute[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> SetterAttributes { get ; } = new System.Attribute[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> Attributes { get ; } = new System.Attribute[] { }; [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public string GetValue(Person instance) { return instance.LastName; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public void SetValue(Person instance, string value) { instance.LastName = value; } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public void SetValueAnonymous( object instance, object value) { SetValue((StaticReflectionDemo.Person)instance, ( string )value); } [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public object GetValueAnonymous( object instance) { return ( object )GetValue((StaticReflectionDemo.Person)instance); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute( "StaticReflection.CodeGen" , "1.0.0" )] [global::System.Diagnostics.DebuggerStepThrough] [global::System.Runtime.CompilerServices.CompilerGenerated] internal sealed class Person0MReflection : StaticReflection.IMethodDefine, StaticReflection.Invoking.IArgsMethod<StaticReflectionDemo.Person, string >, StaticReflection.Invoking.IArgs0AnonymousMethod, StaticReflection.Invoking.IUsualArgsMethod<StaticReflectionDemo.Person, string >, StaticReflection.Invoking.IUsualArgs0AnonymousMethod { public static readonly Person0MReflection Instance = new Person0MReflection(); private Person0MReflection() { } public System.String Name { get ; } = "Name" ; public System.String MetadataName { get ; } = "Name" ; public System.Boolean IsVirtual { get ; } = false ; public System.Boolean IsStatic { get ; } = false ; public System.Boolean IsOverride { get ; } = false ; public System.Boolean IsAbstract { get ; } = false ; public System.Boolean IsSealed { get ; } = false ; public System.Boolean IsDefinition { get ; } = true ; public System.Boolean IsExtern { get ; } = false ; public System.Boolean IsImplicitlyDeclared { get ; } = false ; public System.Boolean CanBeReferencedByName { get ; } = true ; public System.Boolean IsPublic { get ; } = true ; public System.Boolean IsPrivate { get ; } = false ; public System.Boolean IsProtected { get ; } = false ; public System.Boolean IsInternal { get ; } = false ; public System.Collections.Generic.IReadOnlyList<System.Attribute> Attributes { get ; } = new System.Attribute[] { }; public System.Type DeclareType { get ; } = typeof (StaticReflectionDemo.Person); public System.Boolean ReturnsByRef { get ; } = false ; public StaticReflection.StaticMethodKind MethodKind { get ; } = StaticReflection.StaticMethodKind.Ordinary; public StaticReflection.StaticRefKind RefKind { get ; } = StaticReflection.StaticRefKind.None; public StaticReflection.StaticNullableAnnotation ReturnNullableAnnotation { get ; } = StaticReflection.StaticNullableAnnotation.NotAnnotated; public StaticReflection.StaticNullableAnnotation ReceiverNullableAnnotation { get ; } = StaticReflection.StaticNullableAnnotation.NotAnnotated; public System.Boolean ReturnsByRefReadonly { get ; } = false ; public System.Type ReturnType { get ; } = typeof ( string ); public System.Collections.Generic.IReadOnlyList<System.Type> ArgumentTypes { get ; } = new System.Type[] { }; public System.Boolean IsGenericMethod { get ; } = false ; public System.Int32 Arity { get ; } = 0; public System.Boolean IsExtensionMethod { get ; } = false ; public System.Boolean IsAsync { get ; } = false ; public System.Boolean IsVararg { get ; } = false ; public System.Boolean IsCheckedBuiltin { get ; } = false ; public System.Boolean HidesBaseMethodsByName { get ; } = false ; public System.Boolean ReturnsVoid { get ; } = false ; public System.Boolean IsReadOnly { get ; } = false ; public System.Boolean IsInitOnly { get ; } = false ; public System.Boolean IsPartialDefinition { get ; } = false ; public System.Boolean IsConditional { get ; } = false ; public System.Collections.Generic.IReadOnlyList<StaticReflection.ITypeArgumentDefine> TypeArguments { get ; } = new StaticReflection.ITypeArgumentDefine[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> ReturnTypeAttributes { get ; } = new System.Attribute[] { }; [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public #if !NET7_0_OR_GREATER unsafe #endif ref string Invoke(StaticReflectionDemo.Person instance) { ref string result = ref System.Runtime.CompilerServices.Unsafe.AsRef(instance.Name()); return ref result; } public #if !NET7_0_OR_GREATER unsafe #endif ref object InvokeAnonymous( object instance) { return ref System.Runtime.CompilerServices.Unsafe.AsRef< object >(Invoke((StaticReflectionDemo.Person)instance)); } [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public string InvokeUsual(StaticReflectionDemo.Person instance) { return instance.Name(); } public object InvokeUsualAnonymous( object instance) { return InvokeUsual((StaticReflectionDemo.Person)instance); } } [global::System.CodeDom.Compiler.GeneratedCodeAttribute( "StaticReflection.CodeGen" , "1.0.0" )] [global::System.Diagnostics.DebuggerStepThrough] [global::System.Runtime.CompilerServices.CompilerGenerated] internal sealed class Person0CReflection : StaticReflection.IConstructorDefine, StaticReflection.Invoking.IArgsMethod<StaticReflectionDemo.Person, StaticReflectionDemo.Person>, StaticReflection.Invoking.IArgs0AnonymousMethod, StaticReflection.Invoking.IUsualArgsMethod<StaticReflectionDemo.Person, StaticReflectionDemo.Person>, StaticReflection.Invoking.IUsualArgs0AnonymousMethod { public static readonly Person0CReflection Instance = new Person0CReflection(); private Person0CReflection() { } public System.String Name { get ; } = ".ctor" ; public System.String MetadataName { get ; } = ".ctor" ; public System.Boolean IsVirtual { get ; } = false ; public System.Boolean IsStatic { get ; } = false ; public System.Boolean IsOverride { get ; } = false ; public System.Boolean IsAbstract { get ; } = false ; public System.Boolean IsSealed { get ; } = false ; public System.Boolean IsDefinition { get ; } = true ; public System.Boolean IsExtern { get ; } = false ; public System.Boolean IsImplicitlyDeclared { get ; } = true ; public System.Boolean CanBeReferencedByName { get ; } = false ; public System.Boolean IsPublic { get ; } = true ; public System.Boolean IsPrivate { get ; } = false ; public System.Boolean IsProtected { get ; } = false ; public System.Boolean IsInternal { get ; } = false ; public System.Collections.Generic.IReadOnlyList<System.Attribute> Attributes { get ; } = new System.Attribute[] { }; public System.Type DeclareType { get ; } = typeof (StaticReflectionDemo.Person); public System.Boolean ReturnsByRef { get ; } = false ; public StaticReflection.StaticMethodKind MethodKind { get ; } = StaticReflection.StaticMethodKind.Constructor; public StaticReflection.StaticRefKind RefKind { get ; } = StaticReflection.StaticRefKind.None; public StaticReflection.StaticNullableAnnotation ReturnNullableAnnotation { get ; } = StaticReflection.StaticNullableAnnotation.NotAnnotated; public StaticReflection.StaticNullableAnnotation ReceiverNullableAnnotation { get ; } = StaticReflection.StaticNullableAnnotation.NotAnnotated; public System.Boolean ReturnsByRefReadonly { get ; } = false ; public System.Type ReturnType { get ; } = typeof (StaticReflectionDemo.Person); public System.Collections.Generic.IReadOnlyList<System.Type> ArgumentTypes { get ; } = new System.Type[] { }; public System.Boolean IsGenericMethod { get ; } = false ; public System.Int32 Arity { get ; } = 0; public System.Boolean IsExtensionMethod { get ; } = false ; public System.Boolean IsAsync { get ; } = false ; public System.Boolean IsVararg { get ; } = false ; public System.Boolean IsCheckedBuiltin { get ; } = false ; public System.Boolean HidesBaseMethodsByName { get ; } = false ; public System.Boolean ReturnsVoid { get ; } = true ; public System.Boolean IsReadOnly { get ; } = false ; public System.Boolean IsInitOnly { get ; } = false ; public System.Boolean IsPartialDefinition { get ; } = false ; public System.Boolean IsConditional { get ; } = false ; public System.Collections.Generic.IReadOnlyList<StaticReflection.ITypeArgumentDefine> TypeArguments { get ; } = new StaticReflection.ITypeArgumentDefine[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> ReturnTypeAttributes { get ; } = new System.Attribute[] { }; [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public #if !NET7_0_OR_GREATER unsafe #endif ref StaticReflectionDemo.Person Invoke(StaticReflectionDemo.Person instance) { ref StaticReflectionDemo.Person result = ref System.Runtime.CompilerServices.Unsafe.AsRef( new Person()); return ref result; } public #if !NET7_0_OR_GREATER unsafe #endif ref object InvokeAnonymous( object instance) { return ref System.Runtime.CompilerServices.Unsafe.AsRef< object >(Invoke((StaticReflectionDemo.Person)instance)); } [global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)] public StaticReflectionDemo.Person InvokeUsual(StaticReflectionDemo.Person instance) { return new Person(); } public object InvokeUsualAnonymous( object instance) { return InvokeUsual((StaticReflectionDemo.Person)instance); } } public static readonly PersonReflection Instance = new PersonReflection(); public System.Type DeclareType { get ; } = typeof (StaticReflectionDemo.Person); public System.String Name { get ; } = "Person" ; public System.String MetadataName { get ; } = "Person" ; public System.Boolean IsVirtual { get ; } = false ; public System.Boolean IsStatic { get ; } = false ; public System.Boolean IsOverride { get ; } = false ; public System.Boolean IsAbstract { get ; } = false ; public System.Boolean IsSealed { get ; } = false ; public System.Boolean IsDefinition { get ; } = true ; public System.Boolean IsExtern { get ; } = false ; public System.Boolean IsImplicitlyDeclared { get ; } = false ; public System.Boolean CanBeReferencedByName { get ; } = true ; public System.Boolean IsPublic { get ; } = false ; public System.Boolean IsPrivate { get ; } = false ; public System.Boolean IsProtected { get ; } = false ; public System.Boolean IsInternal { get ; } = true ; public System.Type? BaseType { get ; } = typeof (StaticReflectionDemo.Person); public System.Boolean IsReferenceType { get ; } = true ; public System.Boolean IsValueType { get ; } = false ; public System.Boolean IsAnonymousType { get ; } = false ; public System.Boolean IsTupleType { get ; } = false ; public System.Boolean IsNativeIntegerType { get ; } = false ; public System.Boolean IsRefLikeType { get ; } = false ; public System.Boolean IsUnmanagedType { get ; } = false ; public System.Boolean IsReadOnly { get ; } = false ; public System.Boolean IsRecord { get ; } = false ; public System.Int32 TypeKind { get ; } = 2; public StaticReflection.StaticNullableAnnotation NullableAnnotation { get ; } = StaticReflection.StaticNullableAnnotation.None; public System.Collections.Generic.IReadOnlyList<System.String> Interfaces { get ; } = new System.String[] { }; public System.Collections.Generic.IReadOnlyList<System.String> AllInterfaces { get ; } = new System.String[] { }; public System.Collections.Generic.IReadOnlyList<System.Attribute> Attributes { get ; } = new System.Attribute[] { new StaticReflection.Annotions.StaticReflectionAttribute() { } }; public System.Collections.Generic.IReadOnlyList<StaticReflection.IPropertyDefine> Properties { get ; } = new StaticReflection.IPropertyDefine[] { Person0PReflection.Instance, Person1PReflection.Instance }; public System.Collections.Generic.IReadOnlyList<StaticReflection.IMethodDefine> Methods { get ; } = new StaticReflection.IMethodDefine[] { Person0MReflection.Instance }; public System.Collections.Generic.IReadOnlyList<StaticReflection.IEventDefine> Events { get ; } = new StaticReflection.IEventDefine[] { }; public System.Collections.Generic.IReadOnlyList<StaticReflection.IFieldDefine> Fields { get ; } = new StaticReflection.IFieldDefine[] { }; public System.Collections.Generic.IReadOnlyList<StaticReflection.IConstructorDefine> Constructors { get ; } = new StaticReflection.IConstructorDefine[] { Person0CReflection.Instance }; } } |
Code and pdf at
https://ignatandrei.github.io/RSCG_Examples/v2/docs/StaticReflection