AccountTypes.Statistical Alanı
İstatistiksel hesap türünü temsil eder.
Ad Alanı: Microsoft.AnalysisServices
Derleme: Microsoft.AnalysisServices (Microsoft.AnalysisServices içinde.dll)
Sözdizimi
'Bildirim
Public Const Statistical As String
'Kullanım
Dim value As String
value = AccountTypes.Statistical
public const string Statistical
public:
literal String^ Statistical
static val mutable Statistical: string
public const var Statistical : String
Örnekler
Nasıl sınıf çalışmak üzere tasarlanmış C# aşağıdaki örnekte gösterilmiştir.
SortedList<String, String> accountTypes = new SortedList<string, string>();
accountTypes.Add("Asset", AccountTypes.Asset);
accountTypes.Add("Balance", AccountTypes.Balance);
accountTypes.Add("Expense", AccountTypes.Expense);
accountTypes.Add("Flow", AccountTypes.Flow);
accountTypes.Add("Income", AccountTypes.Income);
accountTypes.Add("Liability", AccountTypes.Liability);
accountTypes.Add("Statistical", AccountTypes.Statistical);
foreach (String key in accountTypes.Keys)
{
System.Diagnostics.Debug.WriteLine(key + " --> " + accountTypes[key]);
}
Aşağıdaki sonuçlar görmeniz gerekir.
Asset --> Asset
Balance --> Balance
Expense --> Expense
Flow --> Flow
Income --> Income
Liability --> Liability
Statistical --> Statistical
Sağdaki değerler sütun sabit harflerin içeriğini temsil eder.