# ReflectedMemberProperty

> Initializes a new ReflectedMemberProperty<TContainer, TValue> instance for the specified FieldInfo.

## Definition

* **Type:** Constructor
* **Namespace:** [Unity.Properties](/engine/6000.0/script-reference/unity/properties.md)
* **Assembly:** UnityEngine.PropertiesModule

## ReflectedMemberProperty(FieldInfo, string)

Initializes a new [ReflectedMemberProperty\<TContainer, TValue>](/engine/6000.0/script-reference/unity/properties/reflectedmemberproperty2.md) instance for the specified FieldInfo.

```csharp
public ReflectedMemberProperty(FieldInfo info, string name)
```

### Parameters

**** (\[FieldInfo]\(https\://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo)): The system reflection field info.**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Use this name property--this might override the MemberInfo name

## ReflectedMemberProperty(PropertyInfo, string)

Initializes a new [ReflectedMemberProperty\<TContainer, TValue>](/engine/6000.0/script-reference/unity/properties/reflectedmemberproperty2.md) instance for the specified PropertyInfo.

```csharp
public ReflectedMemberProperty(PropertyInfo info, string name)
```

### Parameters

**** (\[PropertyInfo]\(https\://learn.microsoft.com/dotnet/api/system.reflection.propertyinfo)): The system reflection property info.**** (\[string]\(https\://learn.microsoft.com/dotnet/api/system.string)): Use this name property--this might override the MemberInfo name
