Inheritance: ICustomMarshaler
コード例 #1
0
ファイル: nsInterfaces.cs プロジェクト: Porfoore/DirtyGecko
 public static ICustomMarshaler GetInstance(string cookie)
 {
     return((_Instance == null) ? (_Instance = new PRUnicharMarshaler()) : _Instance);
 }
コード例 #2
0
ファイル: nsInterfaces.cs プロジェクト: Happy-Ferret/geckofx
		public static ICustomMarshaler GetInstance(string cookie)
		{
			return (_Instance == null) ? (_Instance = new PRUnicharMarshaler()) : _Instance;
		}
コード例 #3
0
ファイル: nsInterfaces.cs プロジェクト: ZhangLang001/GeckoFX
 public static ICustomMarshaler GetInstance(string cookie)
 {
     return _Instance ?? (_Instance = new PRUnicharMarshaler());
 }