Fusion.SafeNativeMethods.SetMarker C# (CSharp) Method

SetMarker() private method

private SetMarker ( uint col, string wszName ) : void
col uint
wszName string
return void
		internal static extern void SetMarker(uint col, string wszName);
	}

Usage Example

Beispiel #1
0
 public static void Marker(string name)
 {
     SafeNativeMethods.SetMarker(0, name);
 }