C#で指定された初期サイズのHybridDictionaryを作成する
指定された初期サイズでHybridDictionaryを作成するには、コードは次のとおりです-
例
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict = new HybridDictionary(5); dict.Add("A", "AB"); dict.Add("B", "BC"); dict.Add("C", "DE"); dict.Add("D", "FG"); dict.Add("E", "HI"); Console.WriteLine("Key/Value pairs..."); foreach(DictionaryEntry d in dict) Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value); } }
出力
これにより、次の出力が生成されます-
Key/Value pairs... Key = A, Value = AB Key = B, Value = BC Key = C, Value = DE Key = D, Value = FG Key = E, Value = HI
例
別の例を見てみましょう-
using System; using System.Collections; using System.Collections.Specialized; public class Demo { public static void Main(){ HybridDictionary dict = new HybridDictionary(10); dict.Add("1", 100); dict.Add("2", 200); dict.Add("3", 300); dict.Add("4", 400); dict.Add("5", 500); dict.Add("6", 600); dict.Add("7", 700); dict.Add("8", 800); dict.Add("9", 900); dict.Add("10", 1000); Console.WriteLine("Key/Value pairs..."); foreach(DictionaryEntry d in dict) Console.WriteLine("Key = "+d.Key + ", Value = " + d.Value); } }
出力
これにより、次の出力が生成されます-
Key/Value pairs... Key = 10, Value = 1000 Key = 1, Value = 100 Key = 2, Value = 200 Key = 3, Value = 300 Key = 4, Value = 400 Key = 5, Value = 500 Key = 6, Value = 600 Key = 7, Value = 700 Key = 8, Value = 800 Key = 9, Value = 900
-
新しいキーワードでJavaScript配列を作成します。
以下は、新しいキーワードを使用してJavaScript配列を作成するためのコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style&
-
CSSでピクセルを使用してフォントサイズを設定する
CSSでfont-sizeプロパティを設定するには、pixels(px)も使用できます。これは、テキストのピクセル精度が必要な場合に役立ちます。 例 ピクセルでフォントサイズを設定する例を見てみましょう- <!DOCTYPE html> <html> <head> <style> #demo1 {background-color: hsla(140, 100%, 50%, 0.8);} #demo2 {background-color: hsla(130, 100%, 50%, 0.6);} #demo3 {background-color: