473,499 Members | 1,618 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

New functions in .NET 2.0 ???

Hi All:

I have this line of code, but the syntax check in VB.NET 2003 and also in
VB.NET 2005 Beta 2 shows as unknown:

Dim local4 As Byte

Fixed(local4 = AddressOf dest(offset))

CType(local4, Short) = CType(src, Short)

Return

End Fixed

What is the "FIXED and END FIXED" and how the syntax error can be "fixed"
???

Thx,

Federico
Nov 22 '05 #1
6 1169
That looks like code that was generated by Reflector. I saw the Fixed
and End Fixed code keywords in Reflector for some code. They don't
exist in VB as far as I know.

Nov 22 '05 #2
Frederico-

If I had to guess, FIXED is some sort of internal notation for "Using",
a new VB.NET 2.0 keyword. You can learn more about the Using keyword here:
http://pluralsight.com/blogs/fritz/a...4/28/7834.aspx

Regards-
Eric

www.codedaily.com

"Federico G. Babelis" wrote:
Hi All:

I have this line of code, but the syntax check in VB.NET 2003 and also in
VB.NET 2005 Beta 2 shows as unknown:

Dim local4 As Byte

Fixed(local4 = AddressOf dest(offset))

CType(local4, Short) = CType(src, Short)

Return

End Fixed

What is the "FIXED and END FIXED" and how the syntax error can be "fixed"
???

Thx,

Federico

Nov 22 '05 #3
..NET does not support alphanumeric sort of arrays. (I hope that changes
soon!) Meanwhile, here is a solution.

You could use this in your listbox by sorting the items in an array and then
adding the array items from 0 to length to your listbox.

1. Create a custom comparer class that implements IComparer:
using System;
using System.IO;

namespace Test1CSharp
{
/// <summary>
/// Lacey Orr
/// 29 June 2005
/// Alpha-numeric sorting solution.
/// </summary>

public class AlphaNumCompare : System.Collections.IComparer
{
public int Compare(Object a1, Object b1)
{
//In my case, I compared Directory objects. So I took out
// the filenames / foldernames from the parameter
objects and
// passed those to the sort.

//The string variables to compare
string a = "";
string b = "";

//Is a1 a FileInfo?
if (a1.GetType() == System.Type.GetType("FileInfo"))
a = ((FileInfo)a1).Name;
else
a = a1.ToString();

//Is b1 a FileInfo?
if (b1.GetType() == System.Type.GetType("FileInfo"))
b = ((FileInfo)b1).Name;
else
b = b1.ToString();

return CompareAlphaNum(a, b);
}

// CompareAlphaNum: Does an alphabetic sort.
private static int CompareAlphaNum (string a, string b)
{
//Do a quick check for empty strings. If one string
is empty, then we
// can get out without doing any work.

if (a.Length == 0 && b.Length > 0)
return -1;
else if (a.Length > 0 && b.Length == 0)
return 1;
else if (a.Length == 0 && b.Length == 0)
return 0;

//The order of chars - make this however you want.
string strNums = "0123456789";
string strSortOrder = "
..!#$%&'()*+,-/:;<=>?@[]ˆ_{}~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefgh ijklmnopqrstuvwxyz";

//Variables for comparing
bool aSmaller = true;
bool isFound = false;
int intIndex = 0;
// intLength determines the number of times to loop.
We will loop
// until we hit the end of the shorter string - a
or b.
int intLength = (a.Length < b.Length? a.Length:
b.Length);
string strNumA = "";
string strNumB = "";
int numA = 0;
int numB = 0;
int j = 0;
int k = 0;

//Do the compare while we are not at the end of
either string and haven't found
// the result.
while (!isFound && intIndex < intLength)
{
// if we are dealing with numbers, then sort
the numbers numerically
if (strNums.IndexOf(a[intIndex]) > -1 &&
strNums.IndexOf(b[intIndex]) > -1)
{
//Get all the numbers in string A until
we hit a non-number
j = intIndex;
while (j < a.Length &&
strNums.IndexOf(a[j]) > -1)
{
strNumA += a[j].ToString();
j++;
}
//Get all the numbers in string B until
we hit a non-number
k = intIndex;
while (k < b.Length &&
strNums.IndexOf(b[k]) > -1)
{
strNumB += b[k].ToString();
k++;
}

numA = Convert.ToInt32(strNumA);
numB = Convert.ToInt32(strNumB);

if (numA < numB) // a is before b in
sort order; a < b
return -1;
else if (numA > numB) // b is before a
in sort order; a > b
return 1;
else if (numA == numB)
{
//The numbers are the same.
Remove the number part from the strings
// and compare the remainder of
the string.
return
CompareAlphaNum(a.Substring(strNumA.Length, a.Length-strNumA.Length),
b.Substring(strNumB.Length, b.Length-strNumB.Length));
}
}
else
{
if (strSortOrder.IndexOf(b[intIndex]) <
strSortOrder.IndexOf(a[intIndex]))
{
// If string a < b in a sort, then
we're done
aSmaller = false;
isFound = true;
}
else if
(strSortOrder.IndexOf(b[intIndex]) > strSortOrder.IndexOf(a[intIndex]))
{
// If string a > b in a sort, then
we're done
aSmaller = true;
isFound = true;
}
else if (( b.Length < a.Length) &&
(intIndex == intLength - 1))
{
// If the strings are equal up to
the length-th char but a is longer,
// then we're done.
aSmaller = false;
isFound = true;
}
else
{
// Otherwise, keep sorting
intIndex ++;
}
}
}

if ((a.Length == b.Length) && !isFound)
return 0; //strings are the same.
else if (aSmaller)
return -1; // a is before b in sort order; a < b
else
return 1; // b is before a in sort order; ; a
b }
}
}
2. Use the custom class using Array.Sort(myArray, new MyCompareClass()).

a. Add a new web page

b. Add:
using System.IO;
using System.Text;

c. Add a label to the form (lblDir) to display the sort

d. In the page load:

private void Page_Load(object sender, System.EventArgs e)
{
//Get files in dir
String strDir = MapPath("~/./");
DirectoryInfo curDir = new DirectoryInfo(strDir);
FileInfo [] fiArray = curDir.GetFiles();
string [] strFilenames = new string[fiArray.Length];
for (int j = 0; j < fiArray.Length; j++)
{
strFilenames[j] = fiArray[j].Name;
}

// Sort files
Array.Sort(strFilenames, new AlphaNumCompare());

//Display files
StringBuilder sbFiles = new StringBuilder();
for (int k = 0; k < strFilenames.Length; k++)
{
sbFiles.Append(strFilenames[k] + "<BR>");
}
lblDir.Text = sbFiles.ToString();
}

Lacey

"Federico G. Babelis" wrote:
Hi All:

I have this line of code, but the syntax check in VB.NET 2003 and also in
VB.NET 2005 Beta 2 shows as unknown:

Dim local4 As Byte

Fixed(local4 = AddressOf dest(offset))

CType(local4, Short) = CType(src, Short)

Return

End Fixed

What is the "FIXED and END FIXED" and how the syntax error can be "fixed"
???

Thx,

Federico

Nov 22 '05 #4
Fascinating.

You make the following statement:
.NET does not support alphanumeric sort of arrays.
This is simply not true. For your example, you simply have to implement
IComparable for your complex type, you don't need to implement a string
comparison. That is built in.

In other words, you could replace the line: return CompareAlphaNum(a, b);
with
return a.CompareTo(b);

and delete the entire "CompareAlphaNum" routine.
Note that the CompareAlphaNum routine below doesn't use the same collation
order that .Net uses. Perhaps you meant that .Net doesn't sort a capital
'Z' in front of a lowercase 'a'. If that is what you meant, you are right.
However, it is patently false to say that .Net doesn't support alphanumeric
sorting.

Some reference articles for you to read:
http://msdn.microsoft.com/library/en...sorttopic3.asp
http://odetocode.com/Articles/203.aspx
http://www.devx.com/dotnet/Article/21089
http://aspnet.4guysfromrolla.com/articles/060403-1.aspx

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Lacey" <La***@discussions.microsoft.com> wrote in message
news:11**********************************@microsof t.com... .NET does not support alphanumeric sort of arrays. (I hope that changes
soon!) Meanwhile, here is a solution.

You could use this in your listbox by sorting the items in an array and
then
adding the array items from 0 to length to your listbox.

1. Create a custom comparer class that implements IComparer:
using System;
using System.IO;

namespace Test1CSharp
{
/// <summary>
/// Lacey Orr
/// 29 June 2005
/// Alpha-numeric sorting solution.
/// </summary>

public class AlphaNumCompare : System.Collections.IComparer
{
public int Compare(Object a1, Object b1)
{
//In my case, I compared Directory objects. So I took
out
// the filenames / foldernames from the parameter
objects and
// passed those to the sort.

//The string variables to compare
string a = "";
string b = "";

//Is a1 a FileInfo?
if (a1.GetType() == System.Type.GetType("FileInfo"))
a = ((FileInfo)a1).Name;
else
a = a1.ToString();

//Is b1 a FileInfo?
if (b1.GetType() == System.Type.GetType("FileInfo"))
b = ((FileInfo)b1).Name;
else
b = b1.ToString();

return CompareAlphaNum(a, b);
}

// CompareAlphaNum: Does an alphabetic sort.
private static int CompareAlphaNum (string a, string b)
{
//Do a quick check for empty strings. If one
string
is empty, then we
// can get out without doing any work.

if (a.Length == 0 && b.Length > 0)
return -1;
else if (a.Length > 0 && b.Length == 0)
return 1;
else if (a.Length == 0 && b.Length == 0)
return 0;

//The order of chars - make this however you want.
string strNums = "0123456789";
string strSortOrder = "
.!#$%&'()*+,-/:;<=>?@[]^_{}~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghi jklmnopqrstuvwxyz";

//Variables for comparing
bool aSmaller = true;
bool isFound = false;
int intIndex = 0;
// intLength determines the number of times to
loop.
We will loop
// until we hit the end of the shorter string -
a
or b.
int intLength = (a.Length < b.Length? a.Length:
b.Length);
string strNumA = "";
string strNumB = "";
int numA = 0;
int numB = 0;
int j = 0;
int k = 0;

//Do the compare while we are not at the end of
either string and haven't found
// the result.
while (!isFound && intIndex < intLength)
{
// if we are dealing with numbers, then sort
the numbers numerically
if (strNums.IndexOf(a[intIndex]) > -1 &&
strNums.IndexOf(b[intIndex]) > -1)
{
//Get all the numbers in string A until
we hit a non-number
j = intIndex;
while (j < a.Length &&
strNums.IndexOf(a[j]) > -1)
{
strNumA += a[j].ToString();
j++;
}
//Get all the numbers in string B until
we hit a non-number
k = intIndex;
while (k < b.Length &&
strNums.IndexOf(b[k]) > -1)
{
strNumB += b[k].ToString();
k++;
}

numA = Convert.ToInt32(strNumA);
numB = Convert.ToInt32(strNumB);

if (numA < numB) // a is before b in
sort order; a < b
return -1;
else if (numA > numB) // b is before a
in sort order; a > b
return 1;
else if (numA == numB)
{
//The numbers are the same.
Remove the number part from the strings
// and compare the remainder
of
the string.
return
CompareAlphaNum(a.Substring(strNumA.Length, a.Length-strNumA.Length),
b.Substring(strNumB.Length, b.Length-strNumB.Length));
}
}
else
{
if (strSortOrder.IndexOf(b[intIndex]) <
strSortOrder.IndexOf(a[intIndex]))
{
// If string a < b in a sort,
then
we're done
aSmaller = false;
isFound = true;
}
else if
(strSortOrder.IndexOf(b[intIndex]) > strSortOrder.IndexOf(a[intIndex]))
{
// If string a > b in a sort,
then
we're done
aSmaller = true;
isFound = true;
}
else if (( b.Length < a.Length) &&
(intIndex == intLength - 1))
{
// If the strings are equal up to
the length-th char but a is longer,
// then we're done.
aSmaller = false;
isFound = true;
}
else
{
// Otherwise, keep sorting
intIndex ++;
}
}
}

if ((a.Length == b.Length) && !isFound)
return 0; //strings are the same.
else if (aSmaller)
return -1; // a is before b in sort order; a
< b
else
return 1; // b is before a in sort order; ; a
b

}
}
}
2. Use the custom class using Array.Sort(myArray, new MyCompareClass()).

a. Add a new web page

b. Add:
using System.IO;
using System.Text;

c. Add a label to the form (lblDir) to display the sort

d. In the page load:

private void Page_Load(object sender, System.EventArgs e)
{
//Get files in dir
String strDir = MapPath("~/./");
DirectoryInfo curDir = new DirectoryInfo(strDir);
FileInfo [] fiArray = curDir.GetFiles();
string [] strFilenames = new string[fiArray.Length];
for (int j = 0; j < fiArray.Length; j++)
{
strFilenames[j] = fiArray[j].Name;
}

// Sort files
Array.Sort(strFilenames, new AlphaNumCompare());

//Display files
StringBuilder sbFiles = new StringBuilder();
for (int k = 0; k < strFilenames.Length; k++)
{
sbFiles.Append(strFilenames[k] + "<BR>");
}
lblDir.Text = sbFiles.ToString();
}

Lacey

"Federico G. Babelis" wrote:
Hi All:

I have this line of code, but the syntax check in VB.NET 2003 and also in
VB.NET 2005 Beta 2 shows as unknown:

Dim local4 As Byte

Fixed(local4 = AddressOf dest(offset))

CType(local4, Short) = CType(src, Short)

Return

End Fixed

What is the "FIXED and END FIXED" and how the syntax error can be "fixed"
???

Thx,

Federico

Nov 22 '05 #5
Thank you for the clarification, Lacey.

I admit that I had not seen the distinction that you are drawing, and I
appreciate the effort you put into describing it. I personally have not run
into this problem, but, by the effort you have gone to describe an answer,
it is clearly important for the applications that you create. I defer to
you on those requirements.

I suppose I would have solved the problems you describe by breaking the
strings up into groups and sorting the groups seperately, which is not
necessarily a better solution. For the kinds of data you are seeing, you
have a good answer.

I do not know if this kind of sorting is specifically "on the plate" for
anyone. If you'd like to see Microsoft implement any feature, I suggest
that you send that description to the MS****@microsoft.com e-mail address.
(perhaps package up your code and the solution below and send it in). You
could also submit an article to a developer magazine to describe your
problem and solution, or create a small project in GotDotNet.com to share
the code. These techniques make it easier for folks to find and reuse your
code than posting on a newsgroup.

Thanks again,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Lacey" <La***@discussions.microsoft.com> wrote in message
news:CE**********************************@microsof t.com...
Hi Nick,

You and I are on two different topics. You are talking about lexographic
sorting (like a dictionary) and I am talking about alphanumeric sorting.
.NET Framework does not support alphanumeric sorting. (I'll prove it.
Keep
breathing, Nick! Grab some coffee!)

Let's start with a definition for "alphanumeric sort": a re-ordering of
data
so that numeric and alphabetic data sort as seperate groups. This is
unlike
a "lexicographic sort" which re-orders data like a dictionary.

I looked through the articles you suggested. In all the examples, the
author either:
1. Compared strings that are completely numeric (for example: (int)"11"
compared to (int)"2")
2. Compared strings that are completely alphabetic (for example: "John"
compared to "Adam")
3. Or, displayed the same problem I solved:
http://aspnet.4guysfromrolla.com/dem...tArticles.aspx (See how
"dgExample2.aspx" is listed after "dgExample19.aspx"?)

None of these articles address the problem of alphanumeric sorting with
mixed strings like "22Beers" versus "3Beers".

For example, try this with the CompareTo method you suggested:
int intCompare = "22Beers".CompareTo("3Beers");
PROBLEM: The result is -1, meaning that "22Beers" < "3Beers". If we are
doing an alphabetic comparison, this is correct. But if we are doing an
alphanumeric comparison, this is incorrect because the number 22 is not
less
than the number 3.

Let's look at a simple example with an array:
1. Create a web page with three labels (lblOriginal, lblLexo, lblAlphaNum)
2. In the Page_Load:
string[] arrOriginal = {"a3", "a111", "a2", "a1", "a11", "a22"};
for (int i = 0; i < arrOriginal.Length; i++ ) lblOriginal.Text +=
(arrOriginal[i].ToString() + "<BR>");

string[] arrLexo = {"a3", "a111", "a2", "a1", "a11", "a22"};
Array.Sort(arrLexo);
for (int j = 0; j < arrLexo.Length; j++ ) lblLexo.Text +=
(arrLexo[j].ToString() + "<BR>");

string[] arrAlphaNum = {"a3", "a111", "a2", "a1", "a11", "a22"};
Array.Sort(arrAlphaNum, new AlphaNumCompare());
for (int k = 0; k < arrAlphaNum.Length; k++ ) lblAlphaNum.Text +=
(arrAlphaNum[k].ToString() + "<BR>");

3. To the same project as the web page, add the class AlphaNumCompare()
which implements IComparer (provided in my previous posting).

Run the page, and you'll see the problem.
My original strings:
a3
a111
a2
a1
a11
a22

Microsoft .NET sort:
a1
a11
a111
a2
a22
a3

Custom alphanumeric sort:
a1
a2
a3
a11
a22
a111

See how a11 is before a2 in the Lexographic sort? This is a common
problem
- getting string arrays to sort alphanumerically. I found a lot of
postings
from programmers also looking for solutions. For example, if I have an
array
of chapter titles for a book, my array needs to sort as:
1.1 Introduction
2.0 Procurement
...
2.9 Department-Specific Accounting
2.10 Delivery Addresses
3.0 Forms

You may want to check out this article from Microsoft which says "The .NET
Framework supports word [culture-sensitive comparison of strings], string
[similar to a word sort, except that there are no special cases], and
ordinal
sort [compares the numeric value of each character; for example, a = 65]
rules." Note that it does not have any mention of comparing strings with
both alphabetic and numeric character and treating these character types
as
seperate groups:
http://msdn.microsoft.com/library/de...classtopic.asp)

I hope Microsoft soon includes support for alphanumeric sorting of
strings.

Lacey

"Nick Malik [Microsoft]" wrote:
Fascinating.

You make the following statement:
> .NET does not support alphanumeric sort of arrays.


This is simply not true. For your example, you simply have to implement
IComparable for your complex type, you don't need to implement a string
comparison. That is built in.

In other words, you could replace the line:
> return CompareAlphaNum(a, b);


with
return a.CompareTo(b);

and delete the entire "CompareAlphaNum" routine.
Note that the CompareAlphaNum routine below doesn't use the same
collation
order that .Net uses. Perhaps you meant that .Net doesn't sort a capital
'Z' in front of a lowercase 'a'. If that is what you meant, you are
right.
However, it is patently false to say that .Net doesn't support
alphanumeric
sorting.

Some reference articles for you to read:
http://msdn.microsoft.com/library/en...sorttopic3.asp
http://odetocode.com/Articles/203.aspx
http://www.devx.com/dotnet/Article/21089
http://aspnet.4guysfromrolla.com/articles/060403-1.aspx

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"Lacey" <La***@discussions.microsoft.com> wrote in message
news:11**********************************@microsof t.com...
> .NET does not support alphanumeric sort of arrays. (I hope that
> changes
> soon!) Meanwhile, here is a solution.
>
> You could use this in your listbox by sorting the items in an array and
> then
> adding the array items from 0 to length to your listbox.
>
> 1. Create a custom comparer class that implements IComparer:
> using System;
> using System.IO;
>
> namespace Test1CSharp
> {
> /// <summary>
> /// Lacey Orr
> /// 29 June 2005
> /// Alpha-numeric sorting solution.
> /// </summary>
>
> public class AlphaNumCompare : System.Collections.IComparer
> {
> public int Compare(Object a1, Object b1)
> {
> //In my case, I compared Directory objects. So I took
> out
> // the filenames / foldernames from the parameter
> objects and
> // passed those to the sort.
>
> //The string variables to compare
> string a = "";
> string b = "";
>
> //Is a1 a FileInfo?
> if (a1.GetType() == System.Type.GetType("FileInfo"))
> a = ((FileInfo)a1).Name;
> else
> a = a1.ToString();
>
> //Is b1 a FileInfo?
> if (b1.GetType() == System.Type.GetType("FileInfo"))
> b = ((FileInfo)b1).Name;
> else
> b = b1.ToString();
>
> return CompareAlphaNum(a, b);
> }
>
> // CompareAlphaNum: Does an alphabetic sort.
> private static int CompareAlphaNum (string a, string
> b)
> {
> //Do a quick check for empty strings. If one
> string
> is empty, then we
> // can get out without doing any work.
>
> if (a.Length == 0 && b.Length > 0)
> return -1;
> else if (a.Length > 0 && b.Length == 0)
> return 1;
> else if (a.Length == 0 && b.Length == 0)
> return 0;
>
> //The order of chars - make this however you
> want.
> string strNums = "0123456789";
> string strSortOrder = "
> .!#$%&'()*+,-/:;<=>?@[]^_{}~0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghi jklmnopqrstuvwxyz";
>
> //Variables for comparing
> bool aSmaller = true;
> bool isFound = false;
> int intIndex = 0;
> // intLength determines the number of times to
> loop.
> We will loop
> // until we hit the end of the shorter
> string -
> a
> or b.
> int intLength = (a.Length < b.Length? a.Length:
> b.Length);
> string strNumA = "";
> string strNumB = "";
> int numA = 0;
> int numB = 0;
> int j = 0;
> int k = 0;
>
> //Do the compare while we are not at the end of
> either string and haven't found
> // the result.
> while (!isFound && intIndex < intLength)
> {
> // if we are dealing with numbers, then
> sort
> the numbers numerically
> if (strNums.IndexOf(a[intIndex]) > -1 &&
> strNums.IndexOf(b[intIndex]) > -1)
> {
> //Get all the numbers in string A
> until
> we hit a non-number
> j = intIndex;
> while (j < a.Length &&
> strNums.IndexOf(a[j]) > -1)
> {
> strNumA += a[j].ToString();
> j++;
> }
> //Get all the numbers in string B
> until
> we hit a non-number
> k = intIndex;
> while (k < b.Length &&
> strNums.IndexOf(b[k]) > -1)
> {
> strNumB += b[k].ToString();
> k++;
> }
>
> numA = Convert.ToInt32(strNumA);
> numB = Convert.ToInt32(strNumB);
>
> if (numA < numB) // a is before b in
> sort order; a < b
> return -1;
> else if (numA > numB) // b is before
> a
> in sort order; a > b
> return 1;
> else if (numA == numB)
> {
> //The numbers are the same.
> Remove the number part from the strings
> // and compare the
> remainder
> of
> the string.
> return
> CompareAlphaNum(a.Substring(strNumA.Length, a.Length-strNumA.Length),
> b.Substring(strNumB.Length, b.Length-strNumB.Length));
> }
> }
> else
> {
> if
> (strSortOrder.IndexOf(b[intIndex]) <
> strSortOrder.IndexOf(a[intIndex]))
> {
> // If string a < b in a sort,
> then
> we're done
> aSmaller = false;
> isFound = true;
> }
> else if
> (strSortOrder.IndexOf(b[intIndex]) > strSortOrder.IndexOf(a[intIndex]))
> {
> // If string a > b in a sort,
> then
> we're done
> aSmaller = true;
> isFound = true;
> }
> else if (( b.Length < a.Length) &&
> (intIndex == intLength - 1))
> {
> // If the strings are equal up
> to
> the length-th char but a is longer,
> // then we're done.
> aSmaller = false;
> isFound = true;
> }
> else
> {
> // Otherwise, keep sorting
> intIndex ++;
> }
> }
> }
>
> if ((a.Length == b.Length) && !isFound)
> return 0; //strings are the same.
> else if (aSmaller)
> return -1; // a is before b in sort order;
> a
> < b
> else
> return 1; // b is before a in sort order;
> ; a
>> b
> }
> }
> }
>
>
> 2. Use the custom class using Array.Sort(myArray, new
> MyCompareClass()).
>
> a. Add a new web page
>
> b. Add:
> using System.IO;
> using System.Text;
>
> c. Add a label to the form (lblDir) to display the sort
>
> d. In the page load:
>
> private void Page_Load(object sender, System.EventArgs e)
> {
> //Get files in dir
> String strDir = MapPath("~/./");
> DirectoryInfo curDir = new DirectoryInfo(strDir);
> FileInfo [] fiArray = curDir.GetFiles();
> string [] strFilenames = new string[fiArray.Length];
> for (int j = 0; j < fiArray.Length; j++)
> {
> strFilenames[j] = fiArray[j].Name;
> }
>
> // Sort files
> Array.Sort(strFilenames, new AlphaNumCompare());
>
> //Display files
> StringBuilder sbFiles = new StringBuilder();
> for (int k = 0; k < strFilenames.Length; k++)
> {
> sbFiles.Append(strFilenames[k] + "<BR>");
> }
> lblDir.Text = sbFiles.ToString();
> }
>
> Lacey
>
> "Federico G. Babelis" wrote:
>
>> Hi All:
>>
>> I have this line of code, but the syntax check in VB.NET 2003 and also
>> in
>> VB.NET 2005 Beta 2 shows as unknown:
>>
>> Dim local4 As Byte
>>
>> Fixed(local4 = AddressOf dest(offset))
>>
>> CType(local4, Short) = CType(src, Short)
>>
>> Return
>>
>> End Fixed
>>
>> What is the "FIXED and END FIXED" and how the syntax error can be
>> "fixed"
>> ???
>>
>> Thx,
>>
>> Federico
>>
>>
>>


Nov 22 '05 #6
On Wed, 13 Jul 2005 12:51:01 -0700, Lacey wrote:
You and I are on two different topics. You are talking about lexographic
sorting (like a dictionary) and I am talking about alphanumeric sorting.
.NET Framework does not support alphanumeric sorting. (I'll prove it. Keep
breathing, Nick! Grab some coffee!)


[snip]

You've demonstrated what you mean admirably. The problem is that the exact
phrase "alphanumeric sorting" is not frequently used to represent the type
of problem you have solved.
Nov 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3325
by: hokiegal99 | last post by:
A few questions about the following code. How would I "wrap" this in a function, and do I need to? Also, how can I make the code smart enough to realize that when a file has 2 or more bad...
99
5815
by: David MacQuigg | last post by:
I'm not getting any feedback on the most important benefit in my proposed "Ideas for Python 3" thread - the unification of methods and functions. Perhaps it was buried among too many other less...
21
746
by: Rubén Campos | last post by:
I haven't found any previous message related to what I'm going to ask here, but accept my anticipated excuses if I'm wrong. I want to ask about the real usefulness of the 'inline' keyword. I've...
17
3585
by: cwdjrxyz | last post by:
Javascript has a very small math function list. However there is no reason that this list can not be extended greatly. Speed is not an issue, unless you nest complicated calculations several levels...
2
3756
by: Bryan Olson | last post by:
The current Python standard library provides two cryptographic hash functions: MD5 and SHA-1 . The authors of MD5 originally stated: It is conjectured that it is computationally infeasible to...
7
5877
by: Tim ffitch | last post by:
Hi I have created a VB dll file that contains common functions I use across various projects in VB, Access and Excel. Rather than have to code the functions in each I decided to use the dll...
23
3958
by: Timothy Madden | last post by:
Hello all. I program C++ since a lot of time now and I still don't know this simple thing: what's the problem with local functions so they are not part of C++ ? There surely are many people...
14
4165
by: v4vijayakumar | last post by:
Why we need "virtual private member functions"? Why it is not an (compile time) error?
7
3945
by: Immortal Nephi | last post by:
My project grows large when I put too many member functions into one class. The header file and source code file will have approximately 50,000 lines when one class contains thousand member...
6
9589
KevinADC
by: KevinADC | last post by:
This snippet of code provides several examples of programming techniques that can be applied to most programs. using hashes to create unique results static variable recursive function...
0
7132
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7009
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
6899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7390
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4602
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3103
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3094
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1427
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
302
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.