ClrPlus.Core.Extensions.AssemblyExtensions.Assembly C# (CSharp) Méthode

Assembly() public static méthode

Geths the assembly for a given object.
public static Assembly ( this obj ) : Assembly
obj this The obj.
Résultat System.Reflection.Assembly
        public static Assembly Assembly(this object obj)
        {
            return obj.GetType().Assembly;
        }