예제 #1
0
파일: Tracing.cs 프로젝트: sq/Libraries
 public static bool TryGetName(this INameableGraphicsObject obj, out string result)
 {
     lock (Table)
         return(Table.TryGetValue(obj, out result));
 }
예제 #2
0
파일: Tracing.cs 프로젝트: sq/Libraries
 public static string ToObjectID(this INameableGraphicsObject obj)
 {
     return(ToObjectID((object)obj));
 }
예제 #3
0
파일: Tracing.cs 프로젝트: sq/Libraries
 public static void SetName(this INameableGraphicsObject obj, string name)
 {
     SetName((object)obj, name);
 }