mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
18 lines
394 B
C#
18 lines
394 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
|
|
namespace LibEveryFileExplorer.ComponentModel
|
|
{
|
|
public class PrettyArrayConverter : ArrayConverter
|
|
{
|
|
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destType)
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
}
|