2009-04-01から1ヶ月間の記事一覧
出るエラーはこんな感じ System.Security.Cryptography.CryptographicException: パディングは無効なので、削除できません。 場所 System.Security.Cryptography.RijndaelManagedTransform.DecryptData(Byte inputBuffer, Int32 inputOffset, Int32 inputCou…
IE8の互換モードにてIE7で表示するには <meta http-equiv="X-UA-Compatible" content="IE=7" /> ソース:ドキュメント互換性の定義>IE=edge を指定して、使用できる最高のモードを これを指定する意味がわからん。 今後確実に互換性が保持されるという保証がない以上つかえんだろ・・・。</meta>
テーブル名は大文字っぽい。upper('table')テーブルコンテンツ取得 select * from user_constraints where table_name = 'テーブル名' テーブルカラム取得 select * from user_tab_columns where table_name = 'テーブル名' インデックス取得 select * from …
ファイルがアセンブリであるかどうかを確認する。 >ファイルがアセンブリであるかどうかをプログラムによって確認するには >GetAssemblyName メソッドを呼び出し、テストするファイルの完全パスと名前を渡します。 >BadImageFormatException 例外がスローさ…
偽装処理 作ってた当事はいろいろ思うこともあったが、今は思い出せない。 とりあえずコードのみ。 /// <summary> /// 偽装処理を行うためのスコープを提供します。 /// </summary> public class ImpersonateScope : IDisposable { /// <summary> /// 偽装ユーザ。 /// </summary> private readonly…
頻出。コピペ用とか。 static string AppendSuffix( string suffix, IEnumerable<string> list ) { return string.Join(suffix, list); }</string>
引数取れないしめんどいよねっていう何か。 class ThreadHelper { private readonly Delegate _execute; private readonly Delegate _callback; private object[] _args; public ThreadHelper ( Delegate execute ) : this( execute, null ) { } public Thre…