Shiny.Reflector 1.5.0

Shiny Reflector

Reflection without the actual... reflection. AOT compliant!

Usage

Using the following attribute and marking your class as partial

[Shiny.Reflector.ReflectorAttribute]
public partial class MyClass
{
    public int MyProperty { get; set; }
    public string Message { get; set;}
}

Just that attribute allows you to do this:

var myClass = new MySampleClass
{
    Name = "Hello World",
    Age = null
};

// NOTE: the use of GetReflector - a reflector class is generated for each class marked with the ReflectorAttribute
var reflector = myClass.GetReflector();
foreach (var prop in reflector.Properties) 
{
    var objValue = reflector[prop.Name];
    Console.WriteLine($"Property: {prop.Name} ({prop.Type}) - Current Value: {objValue}");
}

// generics for type casting
var name = reflector.GetValue<string>("Name");
Console.WriteLine("Reflector Name: " + name);

// indexers for loose typing
Console.WriteLine("Reflector Value: " + reflector["age"]);

// set with generics
reflector.SetValue("Age", 99);

// or just an object on the indexer
reflector["name"] = "Something Else";
Console.WriteLine("Reflector Name Value: " + reflector["NaMe"]);
Console.WriteLine("Reflector Age Value: " + reflector["NaMe"]);

Put ReflectionExtensions (the thing that let's you get the reflector) in a separate assembly

<PropertyGroup>
    <ShinyReflectorNamespace>MyNamespace</ShinyReflectorNamespace>
    
    OR
    
    <RootNamespace>MyNamespace</RootNamespace>
    
    OTHERWISE
    global namespace (no namespace)
</PropertyGroup>

TODO

  • Ensure GetReflector calls don't get mixed up since they can be generated in different assemblies
    • Could add it directly to a partial class, the problem is that will interfere with libraries like CTMVVM or does it?
    • I don't want dependency injection involved here
    • Shiny wants to access GetReflector, so it needs to be public and I need to ensure it gets generated in the same assembly OR does pickup the extension from another assembly

Showing the top 20 packages that depend on Shiny.Reflector.

Packages Downloads
Shiny.Extensions.Stores
Store anything in a key/value store - Abstractions for iOS, Android and Windows preferences/secure storage
1

.NET 9.0

  • No dependencies.

Version Downloads Last updated
1.7.2 1 06/13/2026
1.7.2-beta-0001 1 06/13/2026
1.7.1 1 06/13/2026
1.7.0 1 06/13/2026
1.7.0-beta-0004 1 06/13/2026
1.7.0-beta-0003 1 06/13/2026
1.7.0-beta-0002 1 06/13/2026
1.7.0-beta-0001 1 06/13/2026
1.6.1 1 06/13/2026
1.6.0 1 06/13/2026
1.6.0-beta-0015 1 06/13/2026
1.6.0-beta-0014 1 06/13/2026
1.6.0-beta-0013 1 06/13/2026
1.6.0-beta-0012 1 06/13/2026
1.6.0-beta-0011 1 06/13/2026
1.6.0-beta-0010 1 06/13/2026
1.6.0-beta-0009 1 06/13/2026
1.6.0-beta-0006 1 06/13/2026
1.6.0-beta-0005 1 06/13/2026
1.6.0-beta-0004 1 06/13/2026
1.6.0-beta-0003 1 06/13/2026
1.5.1 1 06/13/2026
1.5.0 1 06/13/2026
1.4.0 1 06/13/2026
1.4.0-beta-0002 1 06/13/2026
1.4.0-beta-0001 1 06/13/2026
1.4.0-alpha-0002 1 06/13/2026
1.3.0 1 06/13/2026
1.2.0 1 06/13/2026
1.1.0 1 06/13/2026
1.1.0-alpha-0004 1 06/13/2026
1.1.0-alpha-0001 1 06/13/2026
1.0.0 1 06/13/2026
1.0.0-g0d103c2df8 1 06/13/2026
1.0.0-alpha-0013 1 06/13/2026
1.0.0-alpha-0012 1 06/13/2026
1.0.0-alpha-0007 1 06/13/2026
1.0.0-alpha-0006 1 06/13/2026
1.0.0-alpha-0005 1 06/13/2026
1.0.0-alpha-0004 1 06/13/2026