Example #1
0
        private static void postPluginUnloadCallback(object sender, MStringArrayFunctionArgs args)
        {
            MStringArray str = args.strs;

            MGlobal.displayInfo("POST plugin unload callback with " + str.length + " items:");
            for (int i = 0; i < str.length; i++)
            {
                MGlobal.displayInfo("\tCallback item " + i + " is : " + str[i]);
            }
        }
Example #2
0
		private static void postPluginUnloadCallback(object sender, MStringArrayFunctionArgs args)
		{
			MStringArray str = args.strs;

			MGlobal.displayInfo("POST plugin unload callback with " + str.length + " items:");
			for (int i = 0; i < str.length; i++)
			{
				MGlobal.displayInfo("\tCallback item " + i + " is : " + str[i]);
			}
		}