Exemplo n.º 1
0
        public override string GetExportValue(object owner, object obj)
        {
            if (obj == null)
            {
                return("\"\"");
            }

            MethodDef methodDef = obj as MethodDef;

            Debug.Check(methodDef != null);

            return(methodDef.GetExportValue());
        }