ICSharpCode.NRefactory.MonoCSharp.SymbolWriter.GetGuid C# (CSharp) Method

GetGuid() public static method

public static GetGuid ( ModuleBuilder module ) : System.Guid
module System.Reflection.Emit.ModuleBuilder
return System.Guid
		public static Guid GetGuid (ModuleBuilder module)
		{
#if NET_4_0 || STATIC
			return module.ModuleVersionId;
#else
			if (get_guid_func == null)
				Initialize ();

			return get_guid_func (module);
#endif
		}