當前位置: 首頁>>代碼示例>>C#>>正文


C# Class.GetSignatureForError方法代碼示例

本文整理匯總了C#中Mono.CSharp.Class.GetSignatureForError方法的典型用法代碼示例。如果您正苦於以下問題:C# Class.GetSignatureForError方法的具體用法?C# Class.GetSignatureForError怎麽用?C# Class.GetSignatureForError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Mono.CSharp.Class的用法示例。


在下文中一共展示了Class.GetSignatureForError方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: VisitClass

			private void VisitClass(Class c)
			{
				if (visitedClasses.Contains(c)) {
					Skip = true;
					return;
				}
				visitedClasses.Add(c);

				switch (CurrentPass) {
					case Pass.DiscoverClassesAndMethods: {
						TypeSpec baseType = c.BaseType;
						if (baseType != null) {
							if (verbose) {
								Console.WriteLine("[Auto-sealing] Found parent class {0} for class {1}.", baseType.GetSignatureForError(), c.GetSignatureForError());
							}
							baseTypes.Add (baseType);

							if (baseType.MemberDefinition is ImportedTypeDefinition) {
								// The base class is coming from another assembly - It will not be visited as part of this assembly
								// But we still have to get some of its information recursively
								// and visit all the methods

								// TODO: Do the parsing work
							}
						}
						break;
					}

					case Pass.FinalizeModifierFlags:
						// Last class of a hierarchy are auto-sealed if they are not static
						if (IsLeafClass(c.CurrentType) && ((c.ModFlags & Modifiers.STATIC) == 0)) {
							if (verbose) {
								Console.WriteLine("[Auto-sealing] Making class {0} sealed.", c.GetSignatureForError());
							}

							// When we seal here, we get proper compile error, however the class does not seem to be marked as sealed in IL
							c.ModFlags |= Modifiers.SEALED;
						}
						break;
				}
			}
開發者ID:johnv315,項目名稱:playscript-mono,代碼行數:41,代碼來源:module.cs


注:本文中的Mono.CSharp.Class.GetSignatureForError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。