mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
16 lines
415 B
C#
16 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cosmos.IL2CPU.Extensions
|
|
{
|
|
public static class FieldExtensions
|
|
{
|
|
public static string GetFullName(this FieldInfo aField)
|
|
{
|
|
return aField.FieldType.GetFullName() + " " + aField.DeclaringType.GetFullName() + "." + aField.Name;
|
|
}
|
|
}
|
|
}
|