ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: .NET サーバー
名前: lightbox
処理選択
パスワード

件名 .NET サーバー
名前 lightbox
コメント
http://msdn.microsoft.com/ja-jp/library/2w30w8zx.aspx(【MSDN】 Microsoft へのリンク)

@DIV
vbc /target:library lboxCom.bas
@END

↓lboxCom.bas
@DIV
Imports System
Imports System.Reflection

<Assembly: AssemblyKeyFile("lightbox.snk")>
Namespace lboxComLib    

	Public Interface IlboxCom

		Function Enclose( str As String ) As String

	End Interface    

	Public Class lboxCom
		Implements IlboxCom

		Public Function Enclose( str As String ) As String _
			Implements IlboxCom.Enclose

			Return """" + str + """"

		End Function

	End Class

End Namespace
@END